I've been using Zabbix for around a year now, monitoring around 90 hosts (2000 or so items). All has been fine until recently where the zabbix vm started running out of space.
Long story short; i have set up a second MySQL only box to sit alongside the zabbix instance. I have transferred the db from localhost to the new box ( using
and
and changed DBHost in zabbix-server.conf however i'm not seeing any new data?
A suitable user has been created in the new DB and amended in the conf file. I can
and connect to new db.
Have I missed a step?
Thanks in advance (all logs available by request).
Mac
Long story short; i have set up a second MySQL only box to sit alongside the zabbix instance. I have transferred the db from localhost to the new box ( using
Code:
mysqldump -u USERNAME zabbix > db_backup.sql
Code:
mysql -uUSERNAME -h NEW_MYSQLBOX -pPSWD zabbix < db_backup.sql
A suitable user has been created in the new DB and amended in the conf file. I can
Code:
mysqladmin -u USERNAME -h NEW_MYSQLBOX -pPSWD status
Have I missed a step?
Thanks in advance (all logs available by request).
Mac
Comment