Search found 61 matches

by crfriend
Tue Dec 20, 2011 4:31 pm
Forum: Open Source Nagios Projects
Topic: Install Plugins on Solaris
Replies: 3
Views: 1504

Re: Install Plugins on Solaris

You don't state whether this is in the compilation phase of "make" or the "install" phase. If it's the latter, I seem to recall a problem where the 'install" script that's delivered with Solaris cannot properly handle subdirectories. If this is happening in the "install...
by crfriend
Sun Dec 18, 2011 5:38 pm
Forum: Open Source Nagios Projects
Topic: Compiling nagios plugins on Solaris 10 with CSW
Replies: 2
Views: 1713

Re: Compiling nagios plugins on Solaris 10 with CSW

Did you do a "make clean" to get rid of old *.o files before the last try? It looks like something was left over with an external reference to the SSL bits from a previous compilation attempt.
by crfriend
Sun Dec 18, 2011 5:34 pm
Forum: Open Source Nagios Projects
Topic: Invert alarms
Replies: 4
Views: 2445

Re: Invert alarms

Check the "check_snmp" syntax (check_snmp -h) and query for the single OID that describes what value you're looking for and set the thresholds accordingly. If you're making a decision based on a slew of OIDs, it's usually easier to write a custom plugin.
by crfriend
Sun Dec 18, 2011 5:29 pm
Forum: Open Source Nagios Projects
Topic: Master- slave nagios?
Replies: 1
Views: 940

Re: Master- slave nagios?

In the "classic" distributed setup for Nagios, one runs all the "subservient" servers with notifications turned off and with obsessive-compulsive scripts set to report the findings of each scheduled plugin run to the master. To get "cascading" responsibility, one would ...
by crfriend
Sun Dec 18, 2011 5:23 pm
Forum: Open Source Nagios Projects
Topic: Install Plugins on Solaris
Replies: 3
Views: 1504

Re: Install Plugins on Solaris

It looks like the configure script got confused because the MySQL package was compiled using a different compiler than the one you're using. To clear the immediate error, you can get into the /home/nagios/nagios-plugins-1.4.15/plugins directory, manually edit the Makefile, and remove the "-KPIC...
by crfriend
Sun Dec 18, 2011 5:13 pm
Forum: Open Source Nagios Projects
Topic: Developing Custom SNMP Plugin questions
Replies: 7
Views: 2001

Re: Developing Custom SNMP Plugin questions

JSMurphy nails it here -- you're going to need a strong understanding of the MIB and how it, and all its structure, works. Some MIBs are pretty good about allowing one to "drill into" them; others are pathological and require the use of a bulkwalk -- or worse, a straight walk -- to find wh...
by crfriend
Sun Dec 18, 2011 5:08 pm
Forum: Open Source Nagios Projects
Topic: HTTP 500 error
Replies: 7
Views: 2354

Re: HTTP 500 error

In cases where 500-series errors are being returned from the web-server, the web-server logs are usually indespensible for identifying what went bang. Frequently they not only point to the script that failled but sometimes to the exact line, especially if one is using perl or other interpreted scrip...
by crfriend
Wed Oct 26, 2011 8:07 am
Forum: Open Source Nagios Projects
Topic: Custom Perl Plugin Run At Terminal But Not in Nagios UI??
Replies: 3
Views: 1348

Re: Custom Perl Plugin Run At Terminal But Not in Nagios UI?

# 'check_file_exists' define command{ command_name: check_file_exists command_line: $USER1$/check_file_exists -H $HOSTADDRESS$ } Try getting rid of the colons in the mentioned configuration. Running "nagios -v $config_file" is almost ALWAYS of assistance when the instance won't start.
by crfriend
Wed Oct 26, 2011 7:40 am
Forum: Open Source Nagios Projects
Topic: DNX Server issue
Replies: 2
Views: 1129

Re: DNX Server issue

[1319540402] Error: Function nebmodule_init() in module '/usr/local/nagios/lib/dnxPlugin.so' returned an error. Module will be unloaded. [1319540402] Event broker module '/usr/local/nagios/lib/dnxPlugin.so' deinitialized successfully. Ouch. The only way out of this one will be to "use the sour...
by crfriend
Sat Oct 22, 2011 9:45 am
Forum: Open Source Nagios Projects
Topic: notify by mail does not work
Replies: 1
Views: 881

Re: notify by mail does not work

You may have to acquire/write/configure a mail-sending plugin that'll take the output from Nagios and convert it into quoted-printable MIME to get the special characters to be accepted by the local MTA. Remember to sent your "Content-Type:" header properly. I am assuming that you've been a...