您的位置:首页技术文章
文章详情页

python - supervisor启动程序报错,ERROR (spawn error),如何查看报错具体信息

【字号: 日期:2022-06-25 09:37:11浏览:68作者:猪猪

问题描述

1.使用gunicorn能够正常外网端口访问网址2.配置supervisor后,supervisord -c supervisor.conf正常3.supervisorctl -c supervisor.conf start flask后报错

python - supervisor启动程序报错,ERROR (spawn error),如何查看报错具体信息

python - supervisor启动程序报错,ERROR (spawn error),如何查看报错具体信息

4.supervisorctl -c supervisor.conf start flask 后提示成功,但查询status显示exitpython - supervisor启动程序报错,ERROR (spawn error),如何查看报错具体信息

python - supervisor启动程序报错,ERROR (spawn error),如何查看报错具体信息python - supervisor启动程序报错,ERROR (spawn error),如何查看报错具体信息

问题解答

回答1:

方法一:

supervisorctl tail flask stdout

方法二:

直接查看 /tmp/ (默认日志路径) 下面的 supervisor 开头的相关文件

回答2:

supervisord只是一个守护进程,帮你维护你的进程稳定

启动命令:supervisord -c 配置文件.conf

配置文件.conf

[program:programName]command=网站的启动命令autostart=trueautorestart=truestderr_logfile=/var/log/err.logstdout_logfile=/var/log/out.logstopsignal=INT[supervisord]pidfile=/var/run/supervisord.pidlogfile=/var/log/supervisord.log

标签: Python 编程