Send_NSCA Problems

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
mcwhorts
Posts: 60
Joined: Fri Oct 07, 2011 11:59 am

Send_NSCA Problems

Post 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?
mguthrie
Posts: 4380
Joined: Mon Jun 14, 2010 10:21 am

Re: Send_NSCA Problems

Post by mguthrie »

Learned something new today. I came across this blog that may have a solution:

http://www.agitated.net/blog/?p=399
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises
Contact:

Re: Send_NSCA Problems

Post 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
Former Nagios employee
Creator:
Human Design Website
Get Your Human Design Chart
mcwhorts
Posts: 60
Joined: Fri Oct 07, 2011 11:59 am

Re: Send_NSCA Problems

Post by mcwhorts »

This change has resolved our issue. Thank you for your help.
Locked