Hi Experts, I am on the Zabbix Dashboard and I see Zabbix server is running = no.
My zabbix.conf.php file looks like
<?php
// Zabbix GUI configuration file.
global $DB;
$DB['TYPE'] = 'MYSQL';
$DB['SERVER'] = 'localhost';
$DB['PORT'] = '0';
$DB['DATABASE'] = 'zabbix';
$DB['USER'] = 'zabbix';
$DB['PASSWORD'] = 'zabbix.123';
// Schema name. Used for IBM DB2 and PostgreSQL.
$DB['SCHEMA'] = '';
$ZBX_SERVER = 'localhost';
$ZBX_SERVER_PORT = '10051';
$ZBX_SERVER_NAME = '192.168.101.216';
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
?>
Also under the zabbix-server logs, I see the lot of below message :-
8866:20151018:092529.689 cannot send list of active checks to [127.0.0.1]: host [abc.xyz.com] not found
8867:20151018:092729.712 cannot send list of active checks to [127.0.0.1]: host [abc.xyz.com] not found
I tried to fix this by making an entry under /etc/hosts as below but no go.
127.0.0.1 localhost abc.xyz.com
Please suggest and thanks in advance.
My zabbix.conf.php file looks like
<?php
// Zabbix GUI configuration file.
global $DB;
$DB['TYPE'] = 'MYSQL';
$DB['SERVER'] = 'localhost';
$DB['PORT'] = '0';
$DB['DATABASE'] = 'zabbix';
$DB['USER'] = 'zabbix';
$DB['PASSWORD'] = 'zabbix.123';
// Schema name. Used for IBM DB2 and PostgreSQL.
$DB['SCHEMA'] = '';
$ZBX_SERVER = 'localhost';
$ZBX_SERVER_PORT = '10051';
$ZBX_SERVER_NAME = '192.168.101.216';
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
?>
Also under the zabbix-server logs, I see the lot of below message :-
8866:20151018:092529.689 cannot send list of active checks to [127.0.0.1]: host [abc.xyz.com] not found
8867:20151018:092729.712 cannot send list of active checks to [127.0.0.1]: host [abc.xyz.com] not found
I tried to fix this by making an entry under /etc/hosts as below but no go.
127.0.0.1 localhost abc.xyz.com
Please suggest and thanks in advance.
Comment