So how to do that in Linux?
To pause a process in Linux, just run the following command.
kill -SIGSTOP [PID]
Note: PID = process id, use ps command to see the process id.
To resume a paused process in Linux, run the following command.
kill -SIGCONT [PID]
That's about it. Don't worry, I didn't run this in production server, we have staging server for such troubleshooting purpose.
Chill.