March 2026
M T W T F S S
 1
2345678
9101112131415
16171819202122
23242526272829
3031  

Categories

March 2026
M T W T F S S
 1
2345678
9101112131415
16171819202122
23242526272829
3031  

check httpd runing or not

#!/bin/sh
SERVICE=’httpd’

if ps ax | grep -v grep | grep $SERVICE > /dev/null
then
echo “$SERVICE service running, everything is fine”
else
echo “$SERVICE is not running”
echo “$SERVICE is not running!” | mail -s “$SERVICE down” root
fi

Leave a Reply

You can use these HTML tags

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>