Clean install of Zabbix 5.4 on Ubuntu 20. I get to the Server Details Setup, click next then just get a blank screen.
Ad Widget
Collapse
New Install Cannot get past Zabbix server details Setup
Collapse
X
-
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. Doing that will result in an error stating that no DB has been selected. To correct run the following:Code:zcat /usr/share/doc/zabbix-sql-scripts/mysql/create.sql.gz | mysql -uzabbix -p zabbix
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