xxxxxxxxxx
ps ux #list the running proccess
kill -9 <PID>
xxxxxxxxxx
ps -ef| grep <name or substring of the program> #Find the all program threads
kill - 9 <PID> # Kill it immediately (Second column from above command)
xxxxxxxxxx
######################################################
# How to Kill the supervisord process without the PID
######################################################
ps -ef | grep 'supervisord' | grep -v grep | awk '{print $2}' | xargs -r kill -9
xxxxxxxxxx
# Find the PID of the process
ps aux | grep <process_name>
# Use the kill command to terminate the process
kill <PID>
xxxxxxxxxx
Find PID of process to kill with:
ps ax
Then just specify "kill PID" command as for example:
kill 16320
kill -9 16320 #Force kill in case process is not answering.