Host performance graph: missing image

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
rks
Posts: 38
Joined: Sun Mar 31, 2013 4:08 pm

Host performance graph: missing image

Post by rks »

I am trying to 15 linux servers with Nagios XI. I get the correct host performance graphs
for 8 of them and the localhost. I get a "question mark" image for 7 of the servers (
as shown in attached). Why does this happen? All configuration was done thru the GUI.

thanks,
You do not have the required permissions to view the files attached to this post.
slansing
Posts: 7698
Joined: Mon Apr 23, 2012 4:28 pm
Location: Travelling through time and space...

Re: Host performance graph: missing image

Post by slansing »

Can you run the following immediately after trying to access a page with the question marks:

Code: Select all

tail -20 /var/log/httpd/error_log
Also, can you see any text returned when mousing over the question marks? If so, what is it?
rks
Posts: 38
Joined: Sun Mar 31, 2013 4:08 pm

Re: Host performance graph: missing image

Post by rks »

Code: Select all

[root@ctvmanager ~]# tail -20 /var/log/httpd/error_log
[Sun May 26 03:41:01 2013] [notice] Digest: generating secret for digest authentication ...
[Sun May 26 03:41:01 2013] [notice] Digest: done
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php/modules/module.so' - /usr/lib/php/modules/module.so: cannot open shared object file: No such file or directory in Unknown on line 0
[Sun May 26 03:41:02 2013] [notice] Apache/2.2.15 (Unix) DAV/2 PHP/5.3.3 mod_ssl/2.2.15 OpenSSL/1.0.0-fips configured -- resuming normal operations
[Tue May 28 17:47:51 2013] [error] [client 10.21.90.187] user ctvadmin: authentication failure for "/nagios": Password Mismatch
[Tue May 28 17:48:00 2013] [error] [client 10.21.90.187] user ctvadmin: authentication failure for "/nagios": Password Mismatch
[Tue May 28 17:48:16 2013] [error] [client 10.21.90.187] user ctvadmin: authentication failure for "/nagios": Password Mismatch
[Tue May 28 17:48:18 2013] [error] [client 10.21.90.187] File does not exist: /var/www/html/favicon.ico, referer: http://ctvmanager/nagios
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php/modules/module.so' - /usr/lib/php/modules/module.so: cannot open shared object file: No such file or directory in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php/modules/module.so' - /usr/lib/php/modules/module.so: cannot open shared object file: No such file or directory in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php/modules/module.so' - /usr/lib/php/modules/module.so: cannot open shared object file: No such file or directory in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php/modules/module.so' - /usr/lib/php/modules/module.so: cannot open shared object file: No such file or directory in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php/modules/module.so' - /usr/lib/php/modules/module.so: cannot open shared object file: No such file or directory in Unknown on line 0
[Wed May 29 09:55:54 2013] [error] [client 10.19.177.116] PHP Notice:  Undefined variable: count in /usr/local/nagiosxi/html/includes/components/tracerouteaction/traceroute.php on line 66, referer: http://ctvmanager/nagiosxi/includes/components/xicore/status.php?show=hostdetail&host=ctv-extprd-1
[root@ctvmanager ~]# 
The mouse over on the question mark icon on host ctv-xjabprd-1 says: "View all ctv-xjabprd-1 Performance Graphs"

thanks,
slansing
Posts: 7698
Joined: Mon Apr 23, 2012 4:28 pm
Location: Travelling through time and space...

Re: Host performance graph: missing image

Post by slansing »

Can you take a look at this post and see if it applies to your setup?:

http://serverfault.com/questions/425808 ... -interface

Do you have SSL enabled with Nagios XI?

Additionally, lets fix that module.so problem,

Code: Select all

vi /etc/php.d/mcrypt.ini
Verify that the extension is:

Code: Select all

extension=mcrypt.so
If it is not, change it, then restart apache for good measure:

Code: Select all

service httpd restart
Locked