7

努力尝试让 python 守护程序使用 Python 3.3.4 工作。我使用来自 PyPi 的最新版本的 python-daemon-3K 即 1.5.8

起点是找到以下代码如何在Python中创建守护进程?我相信是 2.x 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()

试图运行这个我得到以下错误。

python mydaemon.py start
Traceback(最近一次调用最后):文件“mydaemon.py”,第 60 行,在 daemon_runner = runner.DaemonRunner(app) 文件“/depot/Python-3.3.4/lib/python3.3/site -packages/python_daemon_3K-1.5.8-py3.3.egg/daemon/runner.py",第 89 行,在init app.stderr_path 中,'w+',buffering=0) ValueError: can't have unbuffered text I/O

任何指针如何翻译以使用 Python 3.3.4 或在 python-daemon-3K 中使用运行器的一个很好的例子

谢谢德里克

4

2 回答 2

5

要使代码在 python3 中运行,您需要在DaemonRunner类中进行更改,不能有无缓冲的文本 IO,但可以有无缓冲的字节 IO,因此将模式更改为'wb+'将起作用:

class DaemonRunner(object):

        self.parse_args()
        self.app = app
        self.daemon_context = DaemonContext()
        self.daemon_context.stdin = open(app.stdin_path, 'r') 
        # for linux /dev/tty must be opened without buffering and with b
        self.daemon_context.stdout = open(app.stdout_path, 'wb+',buffering=0)
        # w+ -> wb+
        self.daemon_context.stderr = open(
            app.stderr_path, 'wb+', buffering=0)
于 2015-09-16T10:56:07.477 回答
0

要使代码在 python3 中运行,您需要在DaemonRunner类中进行更改

class DaemonRunner(object):
    self.parse_args()
    self.app = app
    self.daemon_context = DaemonContext()
    self.daemon_context.stdin = open(app.stdin_path, 'r') 
    self.daemon_context.stdout = open(app.stdout_path, 'w+')
    self.daemon_context.stderr = open(app.stderr_path, 'w+')
于 2016-11-16T09:43:29.503 回答