Tuesday, February 7, 2017

Stop and Continue a Linux Process


Suppose you need to stop any process on Linux server due to high load or low Memory issue on server. Then execute below command

kill -STOP 10007 (10007 is the pid)

Once the load became normal simply continue the process with below command

kill -CONT 10007 (10007 is the pid)

No comments:

Post a Comment