I am occasionally getting fsockopen errors when refreshing the Dashboard and the Zabbix Server shows a Running Status of NO. I've checked the zabbix.conf.php file and it looks fine. If I hit the Refresh on the browser it can load just fine for the next few times and then show the error again. Doesn't seem to be a pattern, sometimes it will load fine and sometimes it won't....
I'm guessing it's a timeout issue of some kind? I'm running PHP 5.2
This is the error that appears:
This is line 714 of config.inc.php
I'm guessing it's a timeout issue of some kind? I'm running PHP 5.2
This is the error that appears:
Code:
Warning: fsockopen() [function.fsockopen]: unable to connect to localhost:10051 (Connection timed out) in /usr/local/apache2/htdocs/zabbix/include/config.inc.php on line 714
Code:
$checkport = fsockopen($ZBX_SERVER, $ZBX_SERVER_PORT, $errnum, $errstr, 2);

Comment