Page 1 of 1

Send_NSCA Problems

Posted: Tue May 29, 2012 9:51 am
by mcwhorts
We recently noticed that one of our systems stopped talking to our Nagios instance. I found in our /var/log/messages some of these messages:

May 29 08:20:48 some system xinetd[28577]: FAIL: nsca per_source_limit from=ip address
May 29 08:21:18 some system xinetd[28577]: FAIL: nsca per_source_limit from=ip address
May 29 08:21:18 some system xinetd[28577]: FAIL: nsca per_source_limit from=ip address
May 29 08:21:18 some system xinetd[28577]: FAIL: nsca per_source_limit from=ip address
May 29 08:21:24 some system xinetd[28577]: FAIL: nsca per_source_limit from=ip address
May 29 08:21:24 some system xinetd[28577]: FAIL: nsca per_source_limit from=ip address

Any ideas or suggestions?

Re: Send_NSCA Problems

Posted: Tue May 29, 2012 10:23 am
by mguthrie
Learned something new today. I came across this blog that may have a solution:

http://www.agitated.net/blog/?p=399

Re: Send_NSCA Problems

Posted: Tue May 29, 2012 10:25 am
by scottwilkerson
What you will need to do is edit the /etc/xinetd.d/nsca file on the XI server to include the following lines

Code: Select all

per_source = UNLIMITED
instances = UNLIMITED
add them between { and }

Then restart xinetd

Code: Select all

service xinetd restart

Re: Send_NSCA Problems

Posted: Tue May 29, 2012 11:19 am
by mcwhorts
This change has resolved our issue. Thank you for your help.