Ad Widget

Collapse

problem with installation 5.0LTS

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • przemo2
    Junior Member
    • Oct 2020
    • 23

    #1

    problem with installation 5.0LTS


    I install zabbix on ubuntu 20 I do everything according to the instructions from the page, when I want to connect in the browser, I get this message

    Click image for larger version

Name:	123.png
Views:	172
Size:	55.8 KB
ID:	410769
  • Atsushi
    Senior Member
    • Aug 2013
    • 2028

    #2
    Did you register the initial data of the database?
    Zabbix is being downloaded over 4 000 000 times every year for a reason. Download and install Zabbix for free and try it yourself!


    c. Create initial database
    Code:
    # zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix

    Comment

    • przemo2
      Junior Member
      • Oct 2020
      • 23

      #3
      of course, following the steps in the instructions and then the same

      Comment

      • Atsushi
        Senior Member
        • Aug 2013
        • 2028

        #4
        Looking at the error message, the initial data is not registered in the database named zabbix. Execute the following SQL to see if you can get the value from the dbversion table.

        ex.
        Code:
        $ mysql -uzabbix -p zabbix
        Enter password:
        
        mysql> select * from dbversion;
        +-----------+----------+
        | mandatory | optional |
        +-----------+----------+
        | 5000000 | 5000002 |
        +-----------+----------+
        1 row in set (0.00 sec)
        
        mysql>
        If you do not get the search results, it is possible that you have registered the initial data in a database with a different name. Or, I think that the registration of the initial data itself has failed.

        Comment

        Working...