我有一个使用 DaemonRunner 的脚本来创建一个带有 pid 文件的守护进程。问题是,如果有人试图在不停止当前正在运行的进程的情况下启动它,它将默默地失败。检测现有进程并提醒用户先停止它的最佳方法是什么?是否像检查 pidfile 一样简单?
我的代码类似于这个例子:
#!/usr/bin/python
import time
from daemon import runner
class App():
def __init__(self):
self.stdin_path = '/dev/null'
self.stdout_path = '/dev/tty'
self.stderr_path = '/dev/tty'
self.pidfile_path = '/tmp/foo.pid'
self.pidfile_timeout = 5
def run(self):
while True:
print("Howdy! Gig'em! Whoop!")
time.sleep(10)
app = App()
daemon_runner = runner.DaemonRunner(app)
daemon_runner.do_action()
要查看我的实际代码,请查看以下中的 investor.py:https://github.com/jgillick/LendingClubAutoInvestor