Page 3 of 3
Re: Can't acces Nagios web interface
Posted: Wed Dec 11, 2013 11:44 am
by Yurian00
I have clear it using development tools but the result is the same. It keeps loading for a while and then I obtain that the webpage can't be showed.
Re: Can't acces Nagios web interface
Posted: Wed Dec 11, 2013 12:15 pm
by abrist
Can you try a different browser?
Re: Can't acces Nagios web interface
Posted: Thu Dec 12, 2013 2:06 am
by Yurian00
Yes, I try Mozilla an Firefox.
Finally a colleague of mine found where was the issue.
The problem was the IPTables firewall on the server. It wasn’t allowing port 80 so he modified it.
Code: Select all
iptables -A INPUT -p tcp --dport 22 -j ACCEPT
iptables -A INPUT -p tcp --dport http -j ACCEPT
iptables -A INPUT -p tcp --dport https -j ACCEPT
iptables-save > /etc/sysconfig/iptables
/etc/init.d/iptables restart
iptables -L –v
Re: Can't acces Nagios web interface
Posted: Thu Dec 12, 2013 9:56 am
by tmcdonald
Are things working now?
Re: Can't acces Nagios web interface
Posted: Thu Dec 12, 2013 10:02 am
by Yurian00
Yes, is working fine.
Now I'm spending time about how I must use Nagios HP MSA P2000 Status and Performance Monitor.
Thank you all very much for your help.