Help - Search - Members - Calendar
Full Version: Nagios Plugin for to check service statuses of linux
linux-noob.com/forums > Distro Noob > Fedora
Ramesh
Hi All,

I need to check service statuses of linux from Nagios Monitoring tool.

Is there any plugin to check service statuses of linux?

I wrote one shell script for this:

CODE
#!/bin/sh
host="$1"
service="$2"
t=`/etc/init.d/$service status`
if echo "$t" |grep -q running; then
echo "OK - $service service is running."
exit 0
else
echo "Critical - $service service is stopped."
exit 2
fi


But it is working from terminal. But it is not working from nagios. Actually for example `/etc/init.d/acpid status` is not executing when nagios calling.

how do I make it to execute correct? or Is there any way to get needed result?

Please help!
hijinks
that isn't really what nagios is used for

look into puppet http://reductivelabs.com/projects/puppet
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2008 Invision Power Services, Inc.