Mac OS X terminal killall won't kill running process - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T09:30:08Zhttp://stackoverflow.com/feeds/question/692528http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/692528/mac-os-x-terminal-killall-wont-kill-running-process0Mac OS X terminal killall won't kill running processGeuis2009-03-28T09:56:15Z2009-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#6925361Answer by Brian Agnew for Mac OS X terminal killall won't kill running processBrian Agnew2009-03-28T10:02:04Z2009-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#6925373Answer by Andrew Jaffe for Mac OS X terminal killall won't kill running processAndrew Jaffe2009-03-28T10:02:06Z2009-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#8166800Answer by karantan for Mac OS X terminal killall won't kill running processkarantan2009-05-03T09:34:09Z2009-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#13911960Answer by GK for Mac OS X terminal killall won't kill running processGK2009-09-07T22:34:50Z2009-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>