Ad Widget

Collapse

The frontend does not match Zabbix database.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • biznaser
    Junior Member
    • Nov 2017
    • 2

    #1

    The frontend does not match Zabbix database.

    Dear All kindly help
    just installed zabbix server 3.4 on ubuntu server 16.4 and followed the whole instructions but in the end i got the mentioned error : The frontend does not match Zabbix database.
    i tried many troubleshooting steps as i got from google search but still no solution
  • Atsushi
    Senior Member
    • Aug 2013
    • 2028

    #2
    If you upgraded from the previous version, please start Zabbix server first.
    When the Zabbix server starts up, the database upgrade process is executed.

    Comment

    • biznaser
      Junior Member
      • Nov 2017
      • 2

      #3
      Originally posted by Atsushi
      If you upgraded from the previous version, please start Zabbix server first.
      When the Zabbix server starts up, the database upgrade process is executed.
      Thanks but it's new installation

      Comment

      • Atsushi
        Senior Member
        • Aug 2013
        • 2028

        #4
        How did you create your initial database?

        Comment

        • Atsushi
          Senior Member
          • Aug 2013
          • 2028

          #5
          A sample database creation procedure is as follows.
          Code:
          $ mysql -uroot -p
          mysql> create database zabbix character set utf8 collate utf8_bin;
          mysql> grant all privileges on zabbix.* to zabbix@localhost identified by 'password' ;
          mysql> exit
          $ zcat /usr/share/doc/zabbix-server-mysql/create.sql.gz | mysql -uroot zabbix -p
          $

          Comment

          Working...