Blank Screen
Blank Screen
Nagios goes into a blank white screen once I click Access Nagios XI from the welcome page. How do I fix this?
-
slansing
- Posts: 7698
- Joined: Mon Apr 23, 2012 4:28 pm
- Location: Travelling through time and space...
Re: Blank Screen
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 restartRe: Blank Screen
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
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
-
slansing
- Posts: 7698
- Joined: Mon Apr 23, 2012 4:28 pm
- Location: Travelling through time and space...
Re: Blank Screen
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
Code: Select all
shutdown -h nowhttp://assets.nagios.com/downloads/nagi ... tabase.pdf
Re: Blank Screen
Thanks, this can be closed.