我需要在scriptA.py
中检查scriptB.py
是否仍在运行。两者都是单独启动的,但scriptB.py
只有在scriptA.py
仍在运行时才会继续。
我知道我可以使用
import subprocess
process = subprocess.Popen(['pgrep', 'scriptA.py'], stdout=subprocess.PIPE)
process.wait()
if not process.returncode:
print "Process running"
else:
print "Process not running"
但脚本a在tmux会话中运行。其名称为tmux new -d -s scriptA_2014-12-09-10-54-02-697559 'cd /home/user/scriptA; python scriptA.py -flag; echo $? > /tmp/scriptA_2014-12-09-10-54-02-697559'
如果我pgrep scriptA.py
它没有返回PID
。 pgrep tmux
可以使用,但可能还有其他tmux会话,所以我无法使用它。
我可以做ps aux | grep scriptA.py | wc -l
之类的事情并查看行数 - 但这感觉它变化很大。
我还能如何验证scriptA.py
是否正在运行?
答案 0 :(得分:0)
我现在正在使用PID
,在脚本执行时写入文件..我使用的代码似乎适合我的情况:
在scriptA
中,执行开始时:
pidf = open("./scriptA_pid.tmp","w")
pidf.write(str(os.getpid()))
pidf.close()
在scriptB
中,在循环开始时需要执行scriptA
。
with open("./scriptA_pid.tmp","r") as f:
scriptA_pid = f.read()
chk_sA = subprocess.Popen(['kill -0 '+str(scriptA_pid)+' > /dev/null 2>&1; echo $?'],stdout=subprocess.PIPE,stderr=devnull,shell=True)
chk_sA.wait()
sA_status = chk_sA.stdout.read()
if int(sA_status) == 0:
#ScriptA is still running
pass
else:
#ScriptA is not running
sys.exit(0)