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.
After upgrading NagiosXI 2014 R1.0 to R1.1
-
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
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
In other scripts, try adding :
$session->max_msg_size(5000);
After the session has been initialized.
re: http://nagios.manubulon.com/faq.html#FAQ9
Re: After upgrading NagiosXI 2014 R1.0 to R1.1
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.
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.
Re: After upgrading NagiosXI 2014 R1.0 to R1.1
Have you tried increasing the value?
Open the "check_snmp_win.pl" in a text editor and change this line:
to:
Did the error go away?
Open the "check_snmp_win.pl" in a text editor and change this line:
Code: Select all
$session->max_msg_size(5000);Code: Select all
$session->max_msg_size(10000);Be sure to check out our Knowledgebase for helpful articles and solutions!
Re: After upgrading NagiosXI 2014 R1.0 to R1.1
Thanks, Error has gone.......