Hi
I've updated my zabbix server to version 1.6.5 and after that the status of the zabbix server is shown as not running.
Is this a bug and if so, how do we resolve it?
I've modified the config.inc.php from
if(!$checkport)
{
clear_messages();
$status['zabbix_server'] = S_NO;
}
else {
$status['zabbix_server'] = S_YES;
}
to
if(!$checkport) {
clear_messages();
$status['zabbix_server'] = S_YES;
}
else {
$status['zabbix_server'] = S_NO;
}
and login to the frontend and able to see the status running as Yes. But when i stop the zabbix_server process, it still display as yes. So does it mean that it is not querying on the process zabbix_server?
How do i go about resolving this?
I've updated my zabbix server to version 1.6.5 and after that the status of the zabbix server is shown as not running.
Is this a bug and if so, how do we resolve it?
I've modified the config.inc.php from
if(!$checkport)
{
clear_messages();
$status['zabbix_server'] = S_NO;
}
else {
$status['zabbix_server'] = S_YES;
}
to
if(!$checkport) {
clear_messages();
$status['zabbix_server'] = S_YES;
}
else {
$status['zabbix_server'] = S_NO;
}
and login to the frontend and able to see the status running as Yes. But when i stop the zabbix_server process, it still display as yes. So does it mean that it is not querying on the process zabbix_server?
How do i go about resolving this?
Comment