Hi all I am using the current Digital Ocean image https://marketplace.digitalocean.com/apps/zabbix-server Zabbix 5.0.6 on CentOS 8
"getting-started" Instructions on the same page says "In a web browser go to https://YourDropletIP and login with Zabbix web interface username name and password"
But https://myDropletIP gives the error
Should I have a mysql user called zabbix? Anyway mysql databases and users shown below...
"getting-started" Instructions on the same page says "In a web browser go to https://YourDropletIP and login with Zabbix web interface username name and password"
But https://myDropletIP gives the error
- Unable to determine current Zabbix database version: the table "dbversion" was not found."
Should I have a mysql user called zabbix? Anyway mysql databases and users shown below...
Code:
mysql> SHOW DATABASES; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | sys | | zabbix | +--------------------+ 5 rows in set (0.07 sec) mysql> SELECT host,user FROM mysql.user; +-----------+------------------+ | host | user | +-----------+------------------+ | localhost | mysql.infoschema | | localhost | mysql.session | | localhost | mysql.sys | | localhost | root | | localhost | zabbix_srv | | localhost | zabbix_web | +-----------+------------------+ 6 rows in set (0.01 sec) mysql>