November 2025
M T W T F S S
 12
3456789
10111213141516
17181920212223
24252627282930

Categories

November 2025
M T W T F S S
 12
3456789
10111213141516
17181920212223
24252627282930

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>