Ad Widget

Collapse

New Install Cannot get past Zabbix server details Setup

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rpoelking
    Junior Member
    • Jan 2022
    • 12

    #1

    New Install Cannot get past Zabbix server details Setup

    Clean install of Zabbix 5.4 on Ubuntu 20. I get to the Server Details Setup, click next then just get a blank screen.
  • rpoelking
    Junior Member
    • Jan 2022
    • 12

    #2
    resolved. Started over with fresh Ubuntu 20 install. Note: there is an omission in the Zabbix documentation on step c. Create initial database. After creation of the DB, the instructions state to run
    Code:
    zcat /usr/share/doc/zabbix-sql-scripts/mysql/create.sql.gz | mysql -uzabbix -p zabbix
    . Doing that will result in an error stating that no DB has been selected. To correct run the following:
    Code:
    sudo gunzip /usr/share/doc/zabbix-sql-scripts/mysql/create.sql.gz
    sudo nano /usr/share/doc/zabbix-sql-scripts/mysql/create.sql
    ## add to the very top line
    USE zabbix;
    ## SAVE AND EXIT
    sudo gzip /usr/share/doc/zabbix-sql-scripts/mysql/create.sql
    sudo zcat /usr/share/doc/zabbix-sql-scripts/mysql/create.sql.gz | mysql -u zabbix -p

    Comment

    Working...