« Earlier 2 items total Later »

On this page: 

Kill Lighttpd & dispatch.fcgi Processes

From: hhttp://forum.textdrive.com/viewtopic.php?pid=43091#p43091

Kill the processes with:
killall -9 -u your_username lighttpd
killall -9 -u your_username ruby18

...or do a
ps aux

Look for the lighttpd and ruby18 process, take note of their PID (process ID - the first number in the row) and do a:
kill -9 pid (replacing pid with the PID you found)


View processes, grep out by user and then kill all their PIDs

ps axu | grep user | kill -9 `awk ‘{print $2}’`

« Earlier 2 items total Later »