linux,  zabbix

[SOLVED]The Zabbix database version does not match current requirements.

报错:The Zabbix database version does not match current requirements. Your database version: 5050086. Required version: 5050147. Please contact your system administrator.

原因:数据库版本不符合zabbix的要求

解决方法:

登录数据库,修改数据库版本的mandatory值至5050147(根据报错中提示的值修改)

MariaDB [(none)]> use zabbix;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
MariaDB [zabbix]> update dbversion set mandatory=5050147, optional=5050147;
Query OK, 1 row affected (0.00 sec)
Rows matched: 1  Changed: 1  Warnings: 0

MariaDB [zabbix]> flush privileges;
Query OK, 0 rows affected (0.00 sec)

重启zabbix-server

systemctl restart zabbix-server.service

3条评论

留言

您的电子邮箱地址不会被公开。 必填项已用 * 标注