扭曲的python守护进程和端口绑定

时间:2013-10-03 00:50:09

标签: python twisted daemon twistd

我正在使用Twisted教程中的以下脚本(稍作修改):

from twisted.application import internet, service
from twisted.internet import reactor, protocol, defer
from twisted.protocols import basic
from twisted.web import client

class FingerProtocol(basic.LineReceiver):

    def lineReceived(self, user):
        d = self.factory.getUser(user)

        def onError(err):
            return "Internal server error"
        d.addErrback(onError)

        def writeResponse(message):
            self.transport.write(message + "\r\n")
            self.transport.loseConnection()
        d.addCallback(writeResponse)

class FingerFactory(protocol.ServerFactory):
    protocol = FingerProtocol

    def __init__(self, prefix):
        self.prefix = prefix

    def getUser(self, user):
        return client.getPage(self.prefix + user)

application = service.Application('finger', uid=1, gid=1)
factory = FingerFactory(prefix="http://livejournal.com/~")
internet.TCPServer(7979, factory).setServiceParent(
    service.IServiceCollection(application))

我保存为finger_daemon.tac并使用

运行
twistd -y finger_daemon.tac \ 
    -l /home/me/twisted/finger.log \
    --pidfile=/home/me/twisted/finger.pid

但当然它不会绑定到79,因为它是一个特权端口。我也试过用sudo运行,没有区别。

然后我尝试将TCPServer端口更改为7979,然后在使用

运行后连接到守护程序
telnet 127.0.0.1 7979

我收到Connection Refused错误。特别是这里发生了什么?守护进程如何在Twisted中起作用?

1 个答案:

答案 0 :(得分:1)

当我运行此代码时,我看到以下日志消息:

2013-10-02 23:50:34-0700 [-] failed to set uid/gid 1/1 (are you root?) -- exiting.

然后twistd退出。所以你需要做sudo twistd然后添加一大堆python路径管理问题...

为什么要设置uidgid参数?您是否尝试将其作为daemon用户运行?您不需要这样做才能进行守护。只需将uid=1, gid=1参数移至Application即可使其适用于我。