Run this command.
sample process is the httpd
# ps aux | grep 'httpd' | grep -v grep | awk '{print $2}'
This will output all process ID only.
Then run this to kill all processes.
# kill -9 `ps aux | grep 'httpd' | grep -v grep | awk '{print $2}'`
Done.
Ok!!!!
ReplyDeletehahahaha!
ReplyDelete