Page 1 of 1

Stop monitoring 127.0.0.1

Posted: Thu Oct 30, 2014 12:14 pm
by canyonsdistrict
How do I stop NLS from monitoring localhost?

Re: Stop monitoring 127.0.0.1

Posted: Thu Oct 30, 2014 2:57 pm
by lgroschen
canyon,

Go to this file:

Code: Select all

vi /etc/rsyslog.d/nagioslogserver.conf
you will see this line second from the bottom:

Code: Select all

*.* @@localhost:5544      # NAGIOSLOGSERVER
Just add a # to comment that line out. Then restart rsyslog:

Code: Select all

service rsyslog restart

/Luke

Re: Stop monitoring 127.0.0.1

Posted: Fri Oct 31, 2014 9:25 am
by canyonsdistrict
Thank you.