shell script to count httpd processes

Patrick Campbell PCampbell at ourvacationstore.com
Wed Mar 16 19:26:15 UTC 2005


What about ps -afe | grep /usr/sbin/httpd | grep -v grep| wc -l

K.i.s.s.

-- 
Patrick Campbell
OurVacationStore.com
Website Administrator
Tel. 602.896.4729

-----Original Message-----
From: redhat-list-bounces at redhat.com [mailto:redhat-list-bounces at redhat.com]
On Behalf Of Steve Kozakoff
Sent: Monday, March 14, 2005 3:22 PM
To: redhat-list at redhat.com
Subject: RE: shell script to count httpd processes

I would recommend looking for the full path, in case (like me) you have
other things with the string "httpd" in the name.

for i in `ps -afe | grep /usr/sbin/httpd | grep -v grep | awk '{print
$2}'`
do
        COUNT=$((COUNT+1))
done
echo $COUNT

(Another) Steve




More information about the redhat-list mailing list