Tuesday, August 23, 2016

How to stop nohup process (command) from command line (unix) ?

ps -ef
You will get list of process, their PID, time, etc
Find the PID of the process and run

kill <PID>
<PID> - is the process number

No comments:

Post a Comment