Ad Widget

Collapse

Cannot use database "zabbix": its "users" table is empty

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Zululander
    Junior Member
    • May 2024
    • 6

    #1

    Cannot use database "zabbix": its "users" table is empty

    I am trying to quickly stand up a docker instance so as to take a look at Zabbix.

    I have followed the instructions found here: https://www.zabbix.com/documentation...ion/containers

    I can however not get the instance to fire up correctly. Looking at the looks I appear to be stuck at the following step.

    zabbix-server-1 | 7:20240524:234910.658 cannot use database "zabbix": its "users" table is empty (is this the Zabbix proxy database?)
    What am I missing?
  • cyber
    Senior Member
    Zabbix Certified SpecialistZabbix Certified Professional
    • Dec 2006
    • 4807

    #2
    Missing initial data in DB. Seems like schema is there but empty...

    Comment

    • Zululander
      Junior Member
      • May 2024
      • 6

      #3
      Ok, so just running the docker compose files will not populate it. I need run the DB container and then access the DB to populate it.

      Comment

      • NgRox
        Member
        • Jun 2022
        • 44

        #4
        Access your DB and execute:

        SET GLOBAL log_bin_trust_function_creators = 1;

        This is necessary in order to create functions or stored procedures when binary logging is enabled.


        Comment

        Working...