<blockquote style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex" class="gmail_quote"><font face="Calibri, sans-serif">Nagios 3.3.1.  Two identical RHEL6.1 systems, and all I’m trying to do is get a total disk space reading.  </font><br>
</blockquote><font face="Calibri, sans-serif"><br>Well the systems are not identical as the manually launched plugin output of yours shows:<br><br></font><blockquote style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex" class="gmail_quote">
<font face="Calibri, sans-serif"><div>[nagios@server1 ~)$ /usr/lib/nagios/plugins/check_disk -w20% -c10%</div>
<div>DISK OK - free space: / 24673 MB (98% inode=99%); /dev/shm 12007 MB
 (100% inode=99%); /boot 154 MB (65% inode=99%); /home 7507 MB (98% 
inode=99%); </div></font></blockquote><font face="Calibri, sans-serif">
<div> </div>

</font><font face="Calibri, sans-serif"><div><blockquote style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex" class="gmail_quote">[nagios@server2 /]$ /usr/lib/nagios/plugins/check_disk -w20% -c10%<br>
DISK OK - free space: / 22004 MB (77% inode=96%); /dev/shm 498 MB (100% inode=99%); /boot 387 MB (84% inode=99%);<br></blockquote><br>Note the /home mount point.<br><br>Have you checked the servers for the different mount points? It looks like on server2 /sys is seen as a partition or mount point while on server1 the check seems to "ignore" it successfully? Any idea why server2 thinks /sys is a partition or mount point?<br>
<br>Can you try to launch it specifically on /sys and output the results (on both servers)?<br><br>./check_disk -w 10% -c 5% -p /sys<br><br>Then try to exclude /sys from the check:<br><br>./check_disk -w 10% -c 5% -x /sys<br>
<br>By the way the error you're seeing seems to be triggered from this code (at the bottom of the source file):<br><br>void<br>stat_path (struct parameter_list *p)<br>{<br>  /* Stat entry to check that dir exists and is accessible */<br>
  if (verbose >= 3)<br>    printf("calling stat on %s\n", p->name);<br>  if (stat (p->name, &stat_buf[0])) {<br>    if (verbose >= 3)<br>      printf("stat failed on %s\n", p->name);<br>
<b>    printf("DISK %s - ", _("CRITICAL"));<br>    die (STATE_CRITICAL, _("%s %s: %s\n"), p->name, _("is not accessible"), strerror(errno));</b><br>  }<br>}<br><br></div></font><br>
<font face="Calibri, sans-serif"><br></font><br><div class="gmail_quote">On Fri, Mar 9, 2012 at 1:16 PM, Boyer, Timothy A. <span dir="ltr"><<a href="mailto:Timothy.Boyer@opm.gov">Timothy.Boyer@opm.gov</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">It's Permissive, so that can't be it.  Thanks...<br>
<div><div></div><div class="h5"><br>
-----Original Message-----<br>
From: Sigmund Brandstaetter [mailto:<a href="mailto:sb@maniladev.com">sb@maniladev.com</a>]<br>
Sent: Thursday, March 08, 2012 4:12 PM<br>
To: <a href="mailto:nagios-users@lists.sourceforge.net">nagios-users@lists.sourceforge.net</a><br>
Subject: Re: [Nagios-users] check_disk '/sys not accessable'<br>
<br>
Tim,<br>
<br>
How about SELinux, is it maybe on only on the one that is making the<br>
problem?<br>
<br>
Cheers<br>
Sigmund<br>
<br>
<br>
<br>
On 3/9/2012 00:49, Boyer, Timothy A. wrote:<br>
> Nagios 3.3.1. Two identical RHEL6.1 systems, and all I'm trying to do<br>
> is get a total disk space reading. So nrpe is running on both, with<br>
> the identical command in nrpe.cfg:<br>
> command[check_all_disk]=/usr/lib/nagios/plugins/check_disk -w $ARG1$<br>
> -c $ARG2$<br>
> command[check_all_disk]=/usr/lib/nagios/plugins/check_disk -w $ARG1$<br>
> -c $ARG2$<br>
> Running as user nagios from the central server.<br>
> One works fine:<br>
> -sh-4.1$ /usr/lib/nagios/plugins/check_nrpe -H server1 -c<br>
> check_all_disk -a 20% 10%<br>
> DISK OK - free space: / 24673 MB (98% inode=99%); /dev/shm 12007 MB<br>
> (100% inode=99%); /boot 154 MB (65% inode=99%); /home 7507 MB (98%<br>
> inode=99%);<br>
> the other gives me this:<br>
> -sh-4.1$ /usr/lib/nagios/plugins/check_nrpe -H server2 -c<br>
> check_all_disk -a 20% 10%<br>
> DISK CRITICAL - /sys is not accessible: Permission denied<br>
> Identical versions of nrpe (2.12); a diff on check_disk shows they're<br>
> both identical; both commands work correctly locally run as user Nagios:<br>
> [nagios@server1 ~)$ /usr/lib/nagios/plugins/check_disk -w20% -c10%<br>
> DISK OK - free space: / 24673 MB (98% inode=99%); /dev/shm 12007 MB<br>
> (100% inode=99%); /boot 154 MB (65% inode=99%); /home 7507 MB (98%<br>
> inode=99%);<br>
> [nagios@server2 /]$ /usr/lib/nagios/plugins/check_disk -w20% -c10%<br>
> DISK OK - free space: / 22004 MB (77% inode=96%); /dev/shm 498 MB<br>
> (100% inode=99%); /boot 387 MB (84% inode=99%);<br>
> Multiple other nrpe commands running on both; this is the only thing<br>
> they're having problems with.<br>
> /sys is user-readable in both. Logs show nothing.<br>
</div></div>> I've run out of ideas. Pointers in the right direction appreciated...<br>
<div><div></div><div class="h5">> Tim<br>
><br>
><br>
> ------------------------------------------------------------------------------<br>
> Virtualization&  Cloud Management Using Capacity Planning<br>
> Cloud computing makes use of virtualization - but cloud computing<br>
> also focuses on allowing computing to be delivered as a service.<br>
> <a href="http://www.accelacomm.com/jaw/sfnl/114/51521223/" target="_blank">http://www.accelacomm.com/jaw/sfnl/114/51521223/</a><br>
><br>
><br>
> _______________________________________________<br>
> Nagios-users mailing list<br>
> <a href="mailto:Nagios-users@lists.sourceforge.net">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<br>
<br>
<br>
--<br>
---------------------<br>
Sigmund Brandstaetter<br>
Check my Blog<br>
Live from Manila<br>
<a href="http://maniladev.com" target="_blank">http://maniladev.com</a><br>
---------------------<br>
<br>
<br>
------------------------------------------------------------------------------<br>
Virtualization & Cloud Management Using Capacity Planning<br>
Cloud computing makes use of virtualization - but cloud computing<br>
also focuses on allowing computing to be delivered as a service.<br>
<a href="http://www.accelacomm.com/jaw/sfnl/114/51521223/" target="_blank">http://www.accelacomm.com/jaw/sfnl/114/51521223/</a><br>
_______________________________________________<br>
Nagios-users mailing list<br>
<a href="mailto:Nagios-users@lists.sourceforge.net">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<br>
<br>
------------------------------------------------------------------------------<br>
Virtualization & Cloud Management Using Capacity Planning<br>
Cloud computing makes use of virtualization - but cloud computing<br>
also focuses on allowing computing to be delivered as a service.<br>
<a href="http://www.accelacomm.com/jaw/sfnl/114/51521223/" target="_blank">http://www.accelacomm.com/jaw/sfnl/114/51521223/</a><br>
_______________________________________________<br>
Nagios-users mailing list<br>
<a href="mailto:Nagios-users@lists.sourceforge.net">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<br>
</div></div></blockquote></div><br>