The credible and accurate information is in the email I sent previously with the nrpe.cfg configuration.<br><br>Here is the nrpe.cfg again:<br><br>#############################################################################
<br># Sample NRPE Config File<br># Written by: Ethan Galstad (<a href="mailto:nagios@nagios.org">nagios@nagios.org</a>)<br>#<br># Last Modified: 02-23-2006<br>#<br># NOTES:<br># This is a sample configuration file for the NRPE daemon.  It needs to be
<br># located on the remote host that is running the NRPE daemon, not the host<br># from which the check_nrpe client is being executed.<br>#############################################################################<br><br>
<br># PID FILE<br># The name of the file in which the NRPE daemon should write it's process ID<br># number.  The file is only written if the NRPE daemon is started by the root<br># user and is running in standalone mode.
<br><br>pid_file=/var/run/nrpe.pid<br><br><br><br># PORT NUMBER<br># Port number we should wait for connections on.<br># NOTE: This must be a non-priviledged port (i.e. > 1024).<br># NOTE: This option is ignored if NRPE is running under either inetd or xinetd
<br><br>server_port=5666<br><br><br><br># SERVER ADDRESS<br># Address that nrpe should bind to in case there are more than one interface<br># and you do not want nrpe to bind on all interfaces.<br># NOTE: This option is ignored if NRPE is running under either inetd or xinetd
<br><br>#server_address=<a href="http://192.168.1.1">192.168.1.1</a><br><br><br><br># NRPE USER<br># This determines the effective user that the NRPE daemon should run as.<br># You can either supply a username or a UID.<br>
#<br># NOTE: This option is ignored if NRPE is running under either inetd or xinetd<br><br>nrpe_user=nagios<br><br><br><br># NRPE GROUP<br># This determines the effective group that the NRPE daemon should run as.<br># You can either supply a group name or a GID.
<br>#<br># NOTE: This option is ignored if NRPE is running under either inetd or xinetd<br><br>nrpe_group=nagios<br><br><br><br># ALLOWED HOST ADDRESSES<br># This is an optional comma-delimited list of IP address or hostnames
<br># that are allowed to talk to the NRPE daemon.<br>#<br># Note: The daemon only does rudimentary checking of the client's IP<br># address.  I would highly recommend adding entries in your /etc/hosts.allow<br># file to allow only the specified host to connect to the port
<br># you are running this daemon on.<br>#<br># NOTE: This option is ignored if NRPE is running under either inetd or xinetd<br><br>#allowed_hosts=<a href="http://127.0.0.1">127.0.0.1</a>,<a href="http://192.168.0.2">192.168.0.2
</a><br><br><br><br># COMMAND ARGUMENT PROCESSING<br># This option determines whether or not the NRPE daemon will allow clients<br># to specify arguments to commands that are executed.  This option only works<br># if the daemon was configured with the --enable-command-args configure script
<br># option.<br>#<br># *** ENABLING THIS OPTION IS A SECURITY RISK! ***<br># Read the SECURITY file for information on some of the security implications<br># of enabling this variable.<br>#<br># Values: 0=do not allow arguments, 1=allow command arguments
<br><br>dont_blame_nrpe=0<br><br><br><br># COMMAND PREFIX<br># This option allows you to prefix all commands with a user-defined string.<br># A space is automatically added between the specified prefix string and the<br># command line from the command definition.
<br>#<br># *** THIS EXAMPLE MAY POSE A POTENTIAL SECURITY RISK, SO USE WITH CAUTION! ***<br># Usage scenario:<br># Execute restricted commmands using sudo.  For this to work, you need to add<br># the nagios user to your /etc/sudoers.  An example entry for alllowing
<br># execution of the plugins from might be:<br>#<br># nagios          ALL=(ALL) NOPASSWD: /usr/lib/nagios/plugins/<br>#<br># This lets the nagios user run all commands in that directory (and only them)<br># without asking for a password.  If you do this, make sure you don't give
<br># random users write access to that directory or its contents!<br><br># command_prefix=/usr/bin/sudo<br><br><br><br># DEBUGGING OPTION<br># This option determines whether or not debugging messages are logged to the<br>
# syslog facility.<br># Values: 0=debugging off, 1=debugging on<br><br>debug=0<br><br><br><br># COMMAND TIMEOUT<br># This specifies the maximum number of seconds that the NRPE daemon will<br># allow plugins to finish executing before killing them off.
<br><br>command_timeout=60<br><br><br><br># WEEK RANDOM SEED OPTION<br># This directive allows you to use SSL even if your system does not have<br># a /dev/random or /dev/urandom (on purpose or because the necessary patches
<br># were not applied). The random number generator will be seeded from a file<br># which is either a file pointed to by the environment valiable $RANDFILE<br># or $HOME/.rnd. If neither exists, the pseudo random number generator will
<br># be initialized and a warning will be issued.<br># Values: 0=only seed from /dev/[u]random, 1=also seed from weak randomness<br><br>#allow_weak_random_seed=1<br><br><br><br># INCLUDE CONFIG FILE<br># This directive allows you to include definitions from an external config file.
<br><br>#include=<somefile.cfg><br><br><br><br># INCLUDE CONFIG DIRECTORY<br># This directive allows you to include definitions from config files (with a<br># .cfg extension) in one or more directories (with recursion).
<br><br>#include_dir=<somedirectory><br>#include_dir=<someotherdirectory><br><br><br><br># COMMAND DEFINITIONS<br># Command definitions that this daemon will run.  Definitions<br># are in the following format:
<br>#<br># command[<command_name>]=<command_line><br>#<br># When the daemon receives a request to return the results of <command_name><br># it will execute the command specified by the <command_line> argument.
<br>#<br># Unlike Nagios, the command line cannot contain macros - it must be<br># typed exactly as it should be executed.<br>#<br># Note: Any plugins that are used in the command lines must reside<br># on the machine that this daemon is running on!  The examples below
<br># assume that you have plugins installed in a /usr/local/nagios/libexec<br># directory.  Also note that you will have to modify the definitions below<br># to match the argument format the plugins expect.  Remember, these are
<br># examples only!<br><br># The following examples use hardcoded command arguments...<br><br>command[check_users]=/usr/lib64/nagios/plugins/check_users -w 5 -c 10<br>command[check_load]=/usr/lib64/nagios/plugins/check_load -w 15,10,5 -c 30,25,20
<br>command[check_disk1]=/usr/lib64/nagios/plugins/check_disk -w 20% -c 10% -p  /dev/mapper/VolGroup00-LogVol02<br>command[check_disk2]=/usr/lib64/nagios/plugins/check_disk -w 20% -c 10% -p  /dev/mapper/VolGroup00-LogVol00
<br>command[check_disk3]=/usr/lib64/nagios/plugins/check_disk -w 20% -c 10% -p /dev/mapper/VolGroup00-LogVol01<br>command[check_disk4]=/usr/lib64/nagios/plugins/check_disk -w 20% -c 10% -p /dev/mapper/VolGroup01-fredVol00
<br>command[check_md]=/usr/lib64/nagios/plugins/check_swraid<br>command[check_zombie_procs]=/usr/lib64/nagios/plugins/check_procs -w 5 -c 10 -s Z<br>command[check_total_procs]=/usr/lib64/nagios/plugins/check_procs -w 150 -c 200
<br><br># The following examples allow user-supplied arguments and can<br># only be used if the NRPE daemon was compiled with support for<br># command arguments *AND* the dont_blame_nrpe directive in this<br># config file is set to '1'...
<br><br>#command[check_users]=/usr/lib64/nagios/plugins/check_users -w $ARG1$ -c $ARG2$<br>#command[check_load]=/usr/lib64/nagios/plugins/check_load -w $ARG1$ -c $ARG2$<br>#command[check_disk]=/usr/lib64/nagios/plugins/check_disk -w $ARG1$ -c $ARG2$ -p $ARG3$
<br>#command[check_procs]=/usr/lib64/nagios/plugins/check_procs -w $ARG1$ -c $ARG2$ -s $ARG3$<br><br><span class="HcCDpe"></span><br><div class="gmail_quote">On Jan 10, 2008 3:57 PM, Valdinger, Stephen (DOV, MSX) <<a href="mailto:svalding@doverchem.com">
svalding@doverchem.com</a>> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">








<div link="blue" vlink="purple" lang="EN-US">

<div>

<p><span style="font-size: 11pt; color: rgb(31, 73, 125);">We're going to need <u>credible and accurate</u> information
about the configuration if you expect us to help you in any way. </span></p>

<p><span style="font-size: 11pt; color: rgb(31, 73, 125);"> </span></p>

<p><span style="font-size: 11pt; color: rgb(23, 54, 93);">Stephen Valdinger</span></p>

<p><span style="font-size: 11pt; color: rgb(23, 54, 93);">Dover Chemical Corporation</span></p>

<p><span style="font-size: 11pt; color: rgb(23, 54, 93);">MIS Helpdesk Guru</span></p>

<p><span style="font-size: 11pt; color: rgb(23, 54, 93);">330.365.3622</span></p>

<p><span style="font-size: 11pt; color: rgb(23, 54, 93);"><a href="mailto:stephen.valdinger@doverchem.com" target="_blank">stephen.valdinger@doverchem.com</a></span></p>

<p><span style="font-size: 11pt; color: rgb(31, 73, 125);"> </span></p>

<p><span style="font-size: 9pt; color: rgb(118, 146, 60);">"Spiderpig, Spiderpig, does whatever a Spiderpig does! Can
he swing, from a web? No he can't, he's a pig. Look out! He is a Spiderpig!!</span><span style="font-size: 10pt; color: rgb(118, 146, 60);"></span></p>

<p><span style="font-size: 11pt; color: rgb(31, 73, 125);"> </span></p>

<div style="border-style: solid none none; border-color: rgb(181, 196, 223) -moz-use-text-color -moz-use-text-color; border-width: 1pt medium medium; padding: 3pt 0in 0in;">

<p><b><span style="font-size: 10pt;">From:</span></b><span style="font-size: 10pt;"> Jake Solid
[mailto:<a href="mailto:richardsolid@gmail.com" target="_blank">richardsolid@gmail.com</a>] <br>
<b>Sent:</b> Thursday, January 10, 2008 3:58 PM<div><div></div><div class="Wj3C7c"><br>
<b>To:</b> <a href="mailto:nagios-users@lists.sourceforge.net" target="_blank">nagios-users@lists.sourceforge.net</a><br>
<b>Subject:</b> Re: [Nagios-users] DISK UNKNOWN</div></div></span></p>

</div><div><div></div><div class="Wj3C7c">

<p> </p>

<p>sorry for the confusion. I usually change some info on the
information i provide via email due to security reasons. <br>
<br>
The real mount point is the following:<br>
<br>
/dev/mapper/VolGroup01-fredVol</p>

<div>

<p>00 <br>
                     
119G  107G  5.8G  95% /vservers/fred/data</p>

</div>

<p style="margin-bottom: 12pt;"><br>
<br>
<br>
</p>

<div>

<p>On Jan 10, 2008 3:51 PM, Marc Powell <<a href="mailto:marc@ena.com" target="_blank">marc@ena.com</a>> wrote:</p>

<div>

<p><br>
<br>
> -----Original Message-----<br>
> From: <a href="mailto:nagios-users-bounces@lists.sourceforge.net" target="_blank">nagios-users-bounces@lists.sourceforge.net</a>
[mailto:<a href="mailto:nagios-users-" target="_blank">nagios-users- </a><br>
> <a href="mailto:bounces@lists.sourceforge.net" target="_blank">bounces@lists.sourceforge.net</a>]
On Behalf Of Jake Solid</p>

</div>

<div>

<p>> Sent: Thursday, January 10, 2008 2:44 PM<br>
> To: <a href="mailto:nagios-users@lists.sourceforge.net" target="_blank">nagios-users@lists.sourceforge.net</a><br>
> Subject: Re: [Nagios-users] DISK UNKNOWN<br>
></p>

</div>

<div>

<p style="margin-bottom: 12pt;">> Yes, thats correct.<br>
><br>
> this is the mount point<br>
><br>
> /dev/mapper/VolGroup01-fredVol00 <br>
>                    
  119G  107G  5.8G  95% /vservers/collombia/info</p>

</div>

<p>So which is it? Are you making these up? You've provided 3
different<br>
mount points for this filesystem in this thread --</p>

<div>

<p style="margin-bottom: 12pt;"><br>
/dev/mapper/VolGroup01-fredVol00<br>
                     
119G  107G  5.8G  95% /vservers/collombia/info<br>
<br>
</p>

</div>

<div>

<p style="margin-bottom: 12pt;">/dev/mapper/VolGroup01-infoVol00<br>
                     
         119G   96G   17G  85% <br>
/vservers/colombia/info</p>

</div>

<p>And in nrpe.cfg --</p>

<div>

<p style="margin-bottom: 12pt;"><br>
command[check_disk3]=/usr/lib64/nagios/plugins/check_disk -w 20% -c 10%<br>
-p /dev/mapper/VolGroup00-LogVol01</p>

</div>

<p>NRPE isn't configured to check either of the ones you've
provided df <br>
output for.</p>

<div>

<div>

<p><br>
--<br>
Marc<br>
<br>
<br>
-------------------------------------------------------------------------<br>
Check out the new SourceForge.net Marketplace.<br>
It's the best place to buy or sell services for <br>
just about anything Open Source.<br>
<a href="http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace" target="_blank">http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace</a>
<br>
_______________________________________________<br>
Nagios-users mailing list<br>
<a href="mailto:Nagios-users@lists.sourceforge.net" target="_blank">Nagios-users@lists.sourceforge.net</a><br>
<a href="https://lists.sourceforge.net/lists/listinfo/nagios-users" target="_blank">https://lists.sourceforge.net/lists/listinfo/nagios-users</a><br>
::: Please include Nagios version, plugin version (-v) and OS when reporting
any issue.<br>
::: Messages without supporting info will risk being sent to /dev/null </p>

</div>

</div>

</div>

<p> </p>

</div></div></div>

</div>


</blockquote></div><br>