- 导入库
from waitress import serve
- 启动的那块改成
serve(app, host="0.0.0.0", port=5001)
- 加入配置文件,放置在 /etc/supervisor/conf.d
[program:名字]
command=python3 启动文件----.py
user=root
autostart=true
autorestart=true
stdout_logfile=/usr/local/log/名字.log
stderr+logfile=/usr/local/log/名字_error.log
startsecs=10
startretries=3
重新启动服务
supervisorctl reload
执行,看一下服务都开启没
supervisorctl status
之后
服务重启关闭的话就用“supervisorctl stop 服务名” 和 “supervisorctl start 服务名”就行
“supervisorctl reload”是所有服务都重启了一下