作为守护进程运行 web.py
我有一个简单的 web.py 程序来加载数据。 在服务器中我不想安装 apache 或任何网络服务器。
我尝试将其作为后台服务 http://www.jejik.com/ articles/2007/02/a_simple_unix_linux_daemon_in_python/
和子类化: (来自 http://www.jejik.com/files/examples/daemon.py)
class Daemon:
def start(self):
"""
Start the daemon
"""
... PID CHECKS....
# Start the daemon
self.daemonize()
self.run()
#My code
class WebService(Daemon):
def run(self):
app.run()
if __name__ == "__main__":
if DEBUG:
app.run()
else:
service = WebService(os.path.join(DIR_ACTUAL,'ElAdministrador.pid'))
if len(sys.argv) == 2:
if 'start' == sys.argv[1]:
service.start()
elif 'stop' == sys.argv[1]:
service.stop()
elif 'restart' == sys.argv[1]:
service.restart()
else:
print "Unknown command"
sys.exit(2)
sys.exit(0)
else:
print "usage: %s start|stop|restart" % sys.argv[0]
sys.exit(2)
但是,web.py 软件无法加载(即:服务没有监听),
如果我直接调用它(即:不使用守护程序代码)工作正常。
I have a simple web.py program to load data. In the server I don't want to install apache or any webserver.
I try to put it as a background service with http://www.jejik.com/articles/2007/02/a_simple_unix_linux_daemon_in_python/
And subclassing:
(from http://www.jejik.com/files/examples/daemon.py)
class Daemon:
def start(self):
"""
Start the daemon
"""
... PID CHECKS....
# Start the daemon
self.daemonize()
self.run()
#My code
class WebService(Daemon):
def run(self):
app.run()
if __name__ == "__main__":
if DEBUG:
app.run()
else:
service = WebService(os.path.join(DIR_ACTUAL,'ElAdministrador.pid'))
if len(sys.argv) == 2:
if 'start' == sys.argv[1]:
service.start()
elif 'stop' == sys.argv[1]:
service.stop()
elif 'restart' == sys.argv[1]:
service.restart()
else:
print "Unknown command"
sys.exit(2)
sys.exit(0)
else:
print "usage: %s start|stop|restart" % sys.argv[0]
sys.exit(2)
However, the web.py software not load (ie: The service no listen)
If I call it directly (ie: No using the daemon code) work fine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我终于找到问题所在了。
Web.py 从命令行接受可选端口号:
并且脚本还从命令行获取输入:
然后 web.py 尝试使用“start”作为端口号并失败。 我没有看到错误,因为是在免费的情况下。
我用一个小技巧解决了这个问题:
I finally find the problem.
Web.py accept from command-line the optional port number:
And the script also take input from the command-line:
then web.py try to use "start" as port number and fail. I don't see the error because was in the bacground.
I fix this with a mini-hack:
您可以使用此命令启动 web.py
you can start the web.py by using this command
我不认为你告诉守护进程运行。 您需要实例化一个 MyDaemon 对象并调用 o.run()。 看起来 WebService 只启动和停止 Web 应用程序的服务接口,而不是实际的 Web 应用程序本身。
I don't think you're telling the daemon to run. You need to instantiate a MyDaemon object and call o.run(). It looks like WebService only starts and stops the service interface to your web app, not the actual web app itself.
不要像您在这里写的那样覆盖第二个参数:
您可以删除“start|restart”上的第二个参数,如下所示:
这样,webpy 将接收您从命令行传递的所有参数(守护进程控制器除外)。 然后你可以简单地运行:
Instead of overwrite the second argument like you wrote here:
you could just delete the second argument on 'start|restart', like this:
In this way, the webpy will receive all the arguments you passed from command line except the daemon controller. Then you can run simply: