Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm launching a subprocess with the following command:

p = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True)

However, when I try to kill using:

p.terminate()

or

p.kill()

The command keeps running in the background, so I was wondering how can I actually terminate the process.

Note that when I run the command with:

p = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE)

It does terminate successfully when issuing the p.terminate().

share|improve this question

4 Answers

up vote 40 down vote accepted

Use a process group so as to enable sending a signal to all the process in the groups. For that, you should attach a session id to the parent process of the spawned/child processes, which is a shell in your case. This will make it the group leader of the processes. So now, when a signal is sent to the process group leader, it's transmitted to all of the child processes of this group.

Here's the code:

import os
import signal
import subprocess

# The os.setsid() is passed in the argument preexec_fn so
# it's run after the fork() and before  exec() to run the shell.
pro = subprocess.Popen(cmd, stdout=subprocess.PIPE, 
                       shell=True, preexec_fn=os.setsid) 

os.killpg(pro.pid, signal.SIGTERM)  # Send the signal to all the process groups
share|improve this answer
Is signal.SIGUSR1 a typo? – Tshepang Jan 29 '11 at 1:23
1  
preexec_fn=os.setpgrp also works – Zang MingJie Aug 29 '12 at 9:52
1  
Does it work on Windows? – Piotr Dobrogost Oct 18 '12 at 23:06
@PiotrDobrogost: Sadly no, because os.setsid is not available in windows (docs.python.org/library/os.html#os.setsid), i don't know if this can help but you can look here (bugs.python.org/issue5115) for some insight about how to do it. – mouad Oct 19 '12 at 10:15
2  
How does subprocess.CREATE_NEW_PROCESS_GROUP relate to this? – Piotr Dobrogost Oct 19 '12 at 10:53
show 2 more comments

p = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True) p.kill()

p.kill() ends up killing the shell process and cmd is still running.

I found a convenient fix this by:

p = subprocess.Popen("exec " + cmd, stdout=subprocess.PIPE, shell=True)

This will cause cmd to inherit the shell process, instead of having the shell launch a child process, which does not get killed. p.pid will be the id of your cmd process then.

p.kill() should work.

I don't know what effect this will have on your pipe though.

share|improve this answer

When shell=True the shell is the child process, and the commands are its children. So any SIGTERM or SIGKILL will kill shell but not its child and I don't remember a good way to do it. The best way I can think of is to use Shell as False. Else when you kill the parent shell process, it leaves a defunct shell process.

--Sai

share|improve this answer

As Sai said, the shell is the child, so signals are intercepted by it -- best way I've found is to use shell=False and use shlex to split the command line:

if isinstance(command, unicode):
    cmd = command.encode('utf8')
args = shlex.split(cmd)

p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)

Then p.kill() and p.terminate() should work how you expect.

share|improve this answer
1  
In my case it doesn't really help given that cmd is "cd path && zsync etc etc". So that actually makes the command to fail! – user175259 Jan 25 '11 at 23:00
1  
Use absolute paths instead of changing directories... Optionally os.chdir(...) to that directory... – Matt Billenstein Jan 26 '11 at 6:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.