我正在基于Sander Marechal 的代码构建一个简单的 pyhon 守护进程。Daemon 的全部目的是每秒运行一个 php 文件(php 文件循环通过数据库检查值和更新数据库)。部分出现问题
subprocess.call(['php','test.php'])
我可以在 shell 上运行“php test.php”,它会做它应该做的事情,但是当它从守护进程定期调用时,它似乎没有被执行。我也知道守护进程通过检查正在运行的进程 ps aux | 在后台工作 grep "daemon-example" 我还包括一个 do_something 函数,它记录每次函数执行的时间并将时间附加到文本文件中。
#!/usr/bin/env python
import sys, time,subprocess
from daemon import Daemon
def runphp():
#subprocess.call(['php ~/pydaemon/test.php'], shell=True)
subprocess.call(['python', 'test.py'])
def do_something():
with open("/tmp/current_time.txt",'a') as f:
f.write("The time is now\n" + time.ctime())
class MyDaemon(Daemon):
def run(self):
while True:
time.sleep(1)
do_something()
subprocess.call(['php','test.php'])
#runphp()
if __name__ == "__main__":
daemon = MyDaemon('/tmp/daemon-example.pid')
if len(sys.argv) == 2:
if 'start' == sys.argv[1]:
daemon.start()
elif 'stop' == sys.argv[1]:
daemon.stop()
elif 'restart' == sys.argv[1]:
daemon.restart()
else:
print "Unknown command"
sys.exit(2)
sys.exit(0)
else:
print "usage: %s start|stop|restart" % sys.argv[0]
sys.exit(2)