Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • I've tried running pkill -TSTP python to pause all of the python processes, but they still seem to be running (they're still constantly writing to log files). Is there someway to debug this? Commented Feb 27, 2016 at 15:50
  • Could you try with SIGSTOP? I don't know the specific case, but Python is slow on handling signals (see SIGINT with Control-C in python). STOP cannot be intercepted by python. Commented Feb 27, 2016 at 16:39
  • The solution for me was to use "pkill -STOP python" and "pkill -CONT python" Commented Feb 27, 2016 at 18:55