Zabbix error. Interface does not match Zabbix database.

install zabbix on Configure DB connectionerror The frontend does not match Zabbix database. i use mysql what is the meaning of this?

+4
source share
4 answers

This means that the version of the Zabbix database does not match the expected version of Zabbix. For example, if you upgrade Zabbix 2.2 to Zabbix 3.0, you will receive a similar message (along with the current version of the database and the expected version of the database) until you update the database (this can be done simply by starting a new version of Zabbix server).

, , , schema.sql, images.sql data.sql. , , " " " " - Zabbix.

+6

Ubuntu 14.04 Zabbix 3.0, sql, /usr/share/doc/zabbix -server-mysql/create.sql, .

+2

: Zabbix

:

Zabbix

shell> mysql -u<username> -p<password>
mysql> create database zabbix character set utf8 collate utf8_bin;
mysql> quit;
shell> mysql -u<username> -p<password> zabbix < database/mysql/schema.sql
# stop here if you are creating database for Zabbix proxy
shell> mysql -u<username> -p<password> zabbix < database/mysql/images.sql
shell> mysql -u<username> -p<password> zabbix < database/mysql/data.sql

3 ...

0

I upgraded the Debian distribution from 7 to 8 on which Zabbix was installed . When this error appeared, I installed zabbix-server-mysqlby typing:

apt-get install zabbix-server-mysql

And that solved the problem.

0
source

All Articles