I've just finished setting up Zabbix under Fedora 17, but the web front end is giving me the message "Zabbix server not running: the information displayed may not be current." This seems to suggest that the front end is unable to communicate with the Zabbix server, but I can't see why that would be. MySQL and the Zabbix server are definitely running, and they're at the location the server should be looking at.
Can anyone suggest a course of investigation I can pursue?
Here are the contents of my zabbix.conf.php file:
Here's the results of "netstat -lnptu", showing that the Zabbix server and MySQL are running at the ports I've configured:
I've tried using "localhost" instead of "127.0.0.1" in zabbix.conf.php to indicate the location of the Zabbix server, with the same results.
Thanks,
Don
Can anyone suggest a course of investigation I can pursue?
Here are the contents of my zabbix.conf.php file:
Code:
<?php // Zabbix GUI configuration file global $DB; $DB['TYPE'] = 'MYSQL'; $DB['SERVER'] = 'localhost'; $DB['PORT'] = '3306'; $DB['DATABASE'] = 'zabbix'; $DB['USER'] = 'root'; $DB['PASSWORD'] = ''; // SCHEMA is relevant only for IBM_DB2 database $DB['SCHEMA'] = ''; $ZBX_SERVER = '127.0.0.1'; $ZBX_SERVER_PORT = '10051'; $ZBX_SERVER_NAME = 'CIM Test'; $IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG; ?>
Code:
Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 0.0.0.0:10051 0.0.0.0:* LISTEN 29721/zabbix_server tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN 9482/mysqld
Thanks,
Don

Comment