Mac OS X terminal killall won't kill running process - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T09:30:08Z http://stackoverflow.com/feeds/question/692528 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/692528/mac-os-x-terminal-killall-wont-kill-running-process 0 Mac OS X terminal killall won't kill running process Geuis 2009-03-28T09:56:15Z 2009-09-07T22:34:50Z <p>I have an instance of lighttpd running. When I do "ps -axc" the process is listed as</p> <pre><code>"614 ?? 0:00.15 lighttpd" </code></pre> <p>But when I do "killall lighttpd" I get</p> <pre><code>No matching processes belonging to you were found </code></pre> <p>I'm on Mac OS X 10.5.6. Is there something I'm missing?</p> http://stackoverflow.com/questions/692528/mac-os-x-terminal-killall-wont-kill-running-process/692536#692536 1 Answer by Brian Agnew for Mac OS X terminal killall won't kill running process Brian Agnew 2009-03-28T10:02:04Z 2009-03-28T10:02:04Z <p>Does it belong to you ? If you do</p> <pre><code>ps aux | grep lighttpd </code></pre> <p>that will give you the user id associated with that process (I'm guessing it's <code>chowned</code> to another user)</p> http://stackoverflow.com/questions/692528/mac-os-x-terminal-killall-wont-kill-running-process/692537#692537 3 Answer by Andrew Jaffe for Mac OS X terminal killall won't kill running process Andrew Jaffe 2009-03-28T10:02:06Z 2009-03-28T10:02:06Z <p>As per the other response, if it's not your process, prepend <code>sudo</code> if you're an administrator. If not, you may be out of luck.</p> <p>Also, try <code>sudo killall -9 lighttpd</code> which sends the specific signal KILL instead of TERM.</p> <p>Just to be sure you can also try <code>sudo kill -9 614</code> using the PID.</p> http://stackoverflow.com/questions/692528/mac-os-x-terminal-killall-wont-kill-running-process/816680#816680 0 Answer by karantan for Mac OS X terminal killall won't kill running process karantan 2009-05-03T09:34:09Z 2009-05-03T09:34:09Z <p>i have also problems with killing some programs. i use force quit, kill -(1-15) pid but it doesnt work. it has status E (trying to exit) but it just wont exit... is there any other way then reboot? i have mac osx 1.5</p> http://stackoverflow.com/questions/692528/mac-os-x-terminal-killall-wont-kill-running-process/1391196#1391196 0 Answer by GK for Mac OS X terminal killall won't kill running process GK 2009-09-07T22:34:50Z 2009-09-07T22:34:50Z <p>Is the task written in the ps aux list in brackets? If so, it is a zombie, it is waiting some I/O task, which probably never completes. You can't kill it as far as I know.</p>