I had over 20 instances of httpd
(apache) processes running, so I decided to shutdown these. Normally I use killall
, But when I typed killall httpd
it just said:
No matching processes belonging to you were found
I guess thats weird, so I tried pkill
and were able to kill all the running processes. I have Looked at this answer but that didn't give me enough information on this. Why is this?
killall
does exact matching butpkill
does not. Is that not the answer? – jw013 Dec 03 '14 at 20:55