Hi, I'm building a monitoring server for a Retail platform and the provided infra for this server at my company is:
I've created the DB and User for the Zabbix application in MySQL with the following commands:
However when accessing the zabbix installation page, I receive a "can't connect to the database"
error, but I'm able to connect to MySQL, by command line and phpMyAdmin.
Is that some kind of problem with the Zabbix 3.4.4 and MySQL 5.7.20 or possibly PHP module that are missing?
That the first time that I'm installing Zabbix
. I'm very familiarised with Nagios management.
Tks!
- CentOS Linux release 7.4.1708 (Core)
- MySQL Community Server 5.7.20
- PHP Version 5.6.32
I've created the DB and User for the Zabbix application in MySQL with the following commands:
CREATE DATABASE zabbixdb CHARACTER SET utf8 COLLATE utf8_bin;
GRANT ALL PRIVILEGES ON zabbixdb.* TO zabbix@localhost IDENTIFIED BY "zabbix";
GRANT ALL PRIVILEGES ON zabbixdb.* TO zabbix@localhost IDENTIFIED BY "zabbix";
However when accessing the zabbix installation page, I receive a "can't connect to the database"
error, but I'm able to connect to MySQL, by command line and phpMyAdmin.Is that some kind of problem with the Zabbix 3.4.4 and MySQL 5.7.20 or possibly PHP module that are missing?
That the first time that I'm installing Zabbix

. I'm very familiarised with Nagios management.Tks!
Comment