Information on download

hi
just wanted to ask i have nagios 1.2 .will nrpe 2.0 work with it or will i have to look for other version.also can u gve me a link for download.
thanks
:slight_smile:

hello
i ahve installed nrpe2.0 .well wanted to ask now to monitor load and other things what changes should i do?.will i have to explicitly give check_load command in services.cfg?

Aparna

Looks to me, that the README that came with nrpe tells you all of this. I’m confused, what is that you didn’t get from the instructions?
Configuring Things On The Nagios Host

Examples for configuring the nrpe daemon are found in the sample
nrpe.cfg file included in this distribution. That config file
resides on the remote host(s) along with the nrpe daemon. The
check_nrpe plugin gets installed on the Nagios host. In order
to use the check_nrpe plugin from within Nagios, you’ll have
to define a few things in the host config file. An example
command definition for the check_nrpe plugin would look like this:

define command{
command_name check_nrpe
command_line /usr/local/nagios/libexec/check_nrpe -H $HOSTADDRESS$ -c $ARG1$
}

In any service definitions that use the nrpe plugin/daemon to
get their results, you would set the service check command portion
of the definition to something like this (sample service definition
is simplified for this example):

define service{
host_name someremotehost
service_description someremoteservice
check_command check_nrpe!yourcommand
… etc …
}

where “yourcommand” is a name of a command that you define in
your nrpe.cfg file on the remote host (see the docs in the
sample nrpe.cfg file for more information).