Page 1 of 1
Blank Screen
Posted: Thu Jan 23, 2014 10:24 am
by rentsys
Nagios goes into a blank white screen once I click Access Nagios XI from the welcome page. How do I fix this?
Re: Blank Screen
Posted: Thu Jan 23, 2014 10:34 am
by slansing
It may be that postgres or mysql are not started. Can you tail the error log and access log and show the output? Try to access the web interface, and then immediately after, run the following and show the output:
Code: Select all
tail - 50 /var/log/httpd/error_log
tail - 50 /var/log/httpd/access_log
service postgresql restart
service mysqld restart
Re: Blank Screen
Posted: Thu Jan 23, 2014 10:49 am
by rmfaria
I got the same error but my customer turned off machine on vmware botton "turn off" direct.
If you run service mysql status that return the stoped status.
You can remove file /var/lib/mysql/mysql.sock and execute command service mysql start,
After you can check again the web access.
Thanks

Re: Blank Screen
Posted: Thu Jan 23, 2014 10:52 am
by slansing
Ah, a stuck sock file, this was likely due to someone shutting down the system improperly, be sure they issue:
So the server has time to gracefully exit out the processes, and shut down services. You may want to check for table corruption now:
http://assets.nagios.com/downloads/nagi ... tabase.pdf
Re: Blank Screen
Posted: Thu Jan 23, 2014 3:17 pm
by rentsys
Thanks, this can be closed.