Is there a way to kill all instances of httpd daemon that are orphaned using a shell script?
if so, how?
I usually use:
./apachectl stop
ps -ef | grep httpd [to see if there are any oprhaned processes]
if yes,
kill -9 <pid> [to kill them]
Need an automated script for apache server