After upgrading NagiosXI 2014 R1.0 to R1.1

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
Rupender
Posts: 43
Joined: Fri Aug 16, 2013 4:07 am

After upgrading NagiosXI 2014 R1.0 to R1.1

Post by Rupender »

Hi,

After upgrading NagiosXI 2014 R1.0 to R1.1. we are getting lots of these messages and i was wondering why it is coming from a specific hosts(Three Exchange Server)?

COMMAND: /usr/local/nagios/libexec/check_snmp_win.pl -H X.X.X.112 -C public --v2c -n 'Microsoft Exchange Active Directory Topology'
OUTPUT: ERROR: Process name table : Message size exceeded buffer maxMsgSize.
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises
Contact:

Re: After upgrading NagiosXI 2014 R1.0 to R1.1

Post by scottwilkerson »

Depending on the plugin some have a -o flag that can be set

In other scripts, try adding :
$session->max_msg_size(5000);

After the session has been initialized.

re: http://nagios.manubulon.com/faq.html#FAQ9
Former Nagios employee
Creator:
Human Design Website
Get Your Human Design Chart
Rupender
Posts: 43
Joined: Fri Aug 16, 2013 4:07 am

Re: After upgrading NagiosXI 2014 R1.0 to R1.1

Post by Rupender »

Thanks for instant reply but problem is still persist.

in this plugin(check_snmp_win.pl) this $session->max_msg_size(5000); line is already present.

So, i did not change anything, please give me the exact information.
User avatar
lmiltchev
Bugs find me
Posts: 13589
Joined: Mon May 23, 2011 12:15 pm

Re: After upgrading NagiosXI 2014 R1.0 to R1.1

Post by lmiltchev »

Have you tried increasing the value?
Open the "check_snmp_win.pl" in a text editor and change this line:

Code: Select all

$session->max_msg_size(5000);
to:

Code: Select all

$session->max_msg_size(10000);
Did the error go away?
Be sure to check out our Knowledgebase for helpful articles and solutions!
Rupender
Posts: 43
Joined: Fri Aug 16, 2013 4:07 am

Re: After upgrading NagiosXI 2014 R1.0 to R1.1

Post by Rupender »

Thanks, Error has gone.......
Locked