Page 2 of 2

Re: NAGIOSSQL LOGIN FAILED

Posted: Fri Mar 28, 2014 8:07 am
by scottwilkerson
It is because of your proxy settings

In /etc/wgetrc make sure you have :

Code: Select all

no_proxy=localhost,127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16 # Hosts to exclude from proxying

Re: NAGIOSSQL LOGIN FAILED

Posted: Fri Mar 28, 2014 4:24 pm
by toleolu
Not sure what you mean by hosts to exclude? I just have the one, right? My nagios server?

Re: NAGIOSSQL LOGIN FAILED

Posted: Sun Mar 30, 2014 4:25 pm
by scottwilkerson
and these 2 at a bare minimum

Code: Select all

no_proxy=localhost,127.0.0.0/8
Nagios XI makes some calls to the backend to localhost, if it isn't excluded it will try to pass it to your proxy which will fail...

Re: NAGIOSSQL LOGIN FAILED

Posted: Mon Mar 31, 2014 12:30 pm
by toleolu
So it should read no_proxy=localhost,127.0.0.0/8, ip of my nagios server. Is that correct?

Re: NAGIOSSQL LOGIN FAILED

Posted: Mon Mar 31, 2014 3:14 pm
by abrist
toleolu wrote:Is that correct?
That sound ok.

Re: NAGIOSSQL LOGIN FAILED

Posted: Mon Mar 31, 2014 3:42 pm
by toleolu
That did it, thanks.