Nagios Plugins 1.4.16 released

Support forum for Nagios Core, Nagios Plugins, NCPA, NRPE, NSCA, NDOUtils and more. Engage with the community of users including those using the open source solutions.
Locked
cwireless
Posts: 66
Joined: Sat Feb 05, 2011 11:37 pm

Nagios Plugins 1.4.16 released

Post by cwireless »

Hi,

After following this link http://nagiosplugins.org/nagiosplugins-1.4.16
just to install the new release of the Nagios Plugins.

Following the README instalation instruction , when I try to check the version of the plugin it is still nagios-plugins 1.4.13
Attached you will find the steps followed and the output for every step.

What could be missing?

[nagios@nagioscwp oc102]$ id
uid=500(nagios) gid=100(users) groups=100(users),500(nagios),501(nagcmd),503(oinstall),504(dba)
[nagios@nagioscwp oc102]$ cd $LIBEXEC
[nagios@nagioscwp libexec]$ check_nt -V
check_nt v1991 (nagios-plugins 1.4.13)
[nagios@nagioscwp libexec]$ check_http -
Name or service not known
HTTP CRITICAL - Unable to open TCP socket
[nagios@nagioscwp libexec]$ check_http -V
check_http v2053 (nagios-plugins 1.4.13)
[nagios@nagioscwp libexec]$
Attachments
nagios-plugins-1.4.16.txt
Output
(131.16 KiB) Downloaded 131 times
agriffin
Posts: 876
Joined: Mon May 09, 2011 9:36 am

Re: Nagios Plugins 1.4.16 released

Post by agriffin »

What output do you get when you run the following command?

Code: Select all

# ls -l /usr/local/nagios/libexec
There are a few instructions missing from the README. Some plugins have additional dependencies and aren't built if you don't have them. For example, SSL development headers are needed for many of them. The 'ls' command above is to check whether any of your plugins have a recent timestamp.
cwireless
Posts: 66
Joined: Sat Feb 05, 2011 11:37 pm

Re: Nagios Plugins 1.4.16 released

Post by cwireless »

Issue was solved with these commands.

./configure

Make all

Make install

Make install-root

Thats all.

[nagios@nagioscwp oc102]$ cd /usr/local/nagios/libexec
[nagios@nagioscwp libexec]$ check_nt -V
check_nt v1.4.16 (nagios-plugins 1.4.16)
[nagios@nagioscwp libexec]$ check_http -V
check_http v1.4.16 (nagios-plugins 1.4.16)
[nagios@nagioscwp libexec]$
mguthrie
Posts: 4380
Joined: Mon Jun 14, 2010 10:21 am

Re: Nagios Plugins 1.4.16 released

Post by mguthrie »

Thanks for updating with the solution!
Locked