May 2024
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  

Categories

May 2024
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  

Stop or Pause Process in Linux Server

Stop or Pause Process in Linux Server

ome times we may need to pause a particular process or service in Linux Servers.

We may need to stop a particular process without killing it for certain period of time and resume it again.

This can be done with KILL Command.

Most of us familiar with KILL comman. But this is the another feature of KILL command, which helps to achieve this:

To Stop a Process or Job:

#kill -STOP 21368 ( where 21368 is process id )

To Resume a Process or Job:

#kill -CONT 21368 ( where 21368 is process id )

Thats all.. Hope this is useful

Leave a Reply

You can use these HTML tags

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>