gpt4 book ai didi

python - 将 python 服务作为后台服务运行

转载 作者:行者123 更新时间:2023-12-04 19:36:58 25 4
gpt4 key购买 nike

这是python代码,我怎样才能只使用python 1.py将应用程序作为守护进程启动命令?

import eventlet
from eventlet import wsgi



def hello_world(env, start_response):
if env['PATH_INFO'] != '/':
start_response('404 Not Found', [('Content-Type', 'text/plain')])
return ['Not Found\r\n']
start_response('200 OK', [('Content-Type', 'text/plain')])
return ['Hello, World!\r\n']

wsgi.server(eventlet.listen(('', 8090)), hello_world)

最佳答案

Supervisor 是管理长时间运行的后台进程的绝佳工具。

安装 supervisor ,创建一个配置文件,指定您要运行的命令、应该运行它的用户、日志位置等。

然后,您可以使用 sudo supervisorctl start {{ name }} 启动服务,并根据需要使用类似的命令停止它。

关于python - 将 python 服务作为后台服务运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47139180/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com