2019年6月24日月曜日
zabbixのレコード数を確認
mysql> select table_name, table_rows from information_schema.TABLES where table_schema = 'zabbix';
2019年6月14日金曜日
Zabbix history_uint.ibd 肥大化して困った。
history_uint.ibdが肥大化して52Gになった。
-rw-r-----. 1 mysql mysql 52495908864 6月 14 09:20 history_uint.ibd
-rw-r-----. 1 mysql mysql 7977566208 6月 14 09:20 trends_uint.ibd
# /etc/init.d/zabbix-server stop
1.現テーブルをコピーして別テーブルで保存(1週間分)
timestampについては以下
https://www.epochconverter.com/
mysql> CREATE TABLE history_uint_new LIKE history_uint;
mysql> INSERT INTO history_uint_new SELECT * FROM history_uint WHERE clock > 'xxxxxxxxxx';
2.コピーした別テーブルを現テーブルに移行
mysql> ALTER TABLE history_uint RENAME history_uint_old;
mysql> ALTER TABLE history_uint_new RENAME history_uint;
5.zabbix-server 起動
# /etc/init.d/zabbix-server start
-rw-r-----. 1 mysql mysql 52495908864 6月 14 09:20 history_uint.ibd
-rw-r-----. 1 mysql mysql 7977566208 6月 14 09:20 trends_uint.ibd
# /etc/init.d/zabbix-server stop
1.現テーブルをコピーして別テーブルで保存(1週間分)
timestampについては以下
https://www.epochconverter.com/
mysql> CREATE TABLE history_uint_new LIKE history_uint;
mysql> INSERT INTO history_uint_new SELECT * FROM history_uint WHERE clock > 'xxxxxxxxxx';
2.コピーした別テーブルを現テーブルに移行
mysql> ALTER TABLE history_uint RENAME history_uint_old;
mysql> ALTER TABLE history_uint_new RENAME history_uint;
5.zabbix-server 起動
# /etc/init.d/zabbix-server start
登録:
投稿 (Atom)
zabbix7 amazon linux2023 インストール postgres15
【postgres】 dnf -y install postgresql15-server postgresql15-server-devel postgresql-setup initdb passwd postgres vi `find / -name pg_hba.con...
-
# mount /dev/nvme0n1p3 /mnt/m2 mount: /mnt/m2: 未知のファイルシステムタイプ 'LVM2_member' です. # fdisk -l /dev/nvme0n1 ディスク /dev/nvme0n1: 953....
-
【snmp/snmptrap】 # yum -y install net-snmp # yum -y install net-snmp-utils # yum -y install snmptt # yum install perl-Sys-Syslog # fi...
-
※Status code: 404 for https://dlm.mariadb.com/repo/mariadb-server/10.7.... → Ver.10 サポート切れ!! # dnf remove MareaDB-client # curl -sS https:...