我正在使用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中起作用?
答案 0 :(得分:1)
当我运行此代码时,我看到以下日志消息:
2013-10-02 23:50:34-0700 [-] failed to set uid/gid 1/1 (are you root?) -- exiting.
然后twistd
退出。所以你需要做sudo twistd
然后添加一大堆python路径管理问题...
为什么要设置uid
和gid
参数?您是否尝试将其作为daemon
用户运行?您不需要这样做才能进行守护。只需将uid=1, gid=1
参数移至Application
即可使其适用于我。