我有一个可以启动和关闭进程的类。但似乎并没有关闭这个过程。
我的python代码,还有其他方法,但它们工作正常。:
class KismetInstance:
"""Creates a kismet_server instance"""
def __init__(self, value=False):
logging.basicConfig(format='%(asctime)-15s::: %(message)s')
self.logger = logging.getLogger('kismet_instance')
self.example = value
def __create_kismet_instance__(self):
"""
Create a kismet_server subprocess.
:return:
"""
shell = ['sudo', '/usr/local/bin/kismet_server']
self.logger.debug('Attempting to run: %s', " ".join(shell))
self.kismet = Popen(shell, stdin=PIPE, stdout=PIPE, stderr=PIPE, cwd=r'./logs', preexec_fn=os.setsid)
def __destroy_kismet_instance__(self):
"""
Kill the subprocess
:return:
"""
os.killpg(os.getpgid(self.kismet.pid), 15)
它可以创建子流程。但是当我试图杀死(没有sudo)
时,我得到了这个错误OSError: [Errno 1] Operation not permitted
如果我使用sudo运行,那么该过程仍然在运行。
pi@raspberrypi ~/project $ ps -A | grep 'kismet'
2912 ? 00:00:00 kismet_server
答案 0 :(得分:1)
我设法解决了这个问题。事实证明,子流程正在重生,创造了一些奇怪的东西,阻止了python跟踪它。
所以我必须这样做来解决它,然而,这不是最优雅的解决方案,而是dangerouddangerous 。
使用此时要小心,因为如果您输入的术语比我的更广泛('kismet'
),那么您可能会杀死系统上的大量进程。
def __destroy_kismet_instance__(self):
"""
Kill the subprocess
:return:
"""
sig = signal.SIGKILL # What signal to send
os.killpg(os.getpgid(self.kismet.pid), sig) # Kill one of them
p_list = subprocess.Popen(['ps', '-A'], stdout=subprocess.PIPE) # Get All processes on system
out, err = p_list.communicate()
for line in out.splitlines(): # For each line (or process)
if 'kismet' in line: # if 'kismet' appears in its name
pid = int(line.split(None, 1)[0]) # Get the process ID
self.logger.debug("Found: %d", pid)
os.killpg(os.getpgid(pid), sig) # Kill the process