不能由主管重新启动gunicorn

时间:2018-03-27 10:21:42

标签: python django gunicorn supervisor

当我运行" supervisorctl status hitbot"然后我面对这个错误 FATAL退出太快(流程日志可能包含详细信息)
#/ bin中/ gunicorn_start 这里** BIND = ip_address:port **  gunicorn_start

/etc/supervisor/conf.d/hitbot.conf hitbot.conf

但是当我输入这些命令时 error

在日志文件中 error log

但是当它通过" bash / bin / gunicorn_start" * 测试gunicorn_start时它工作正常 testing

1 个答案:

答案 0 :(得分:0)

尝试以下命令:pkill -HUP gunicorn

Gunicorn文档:http://docs.gunicorn.org/en/stable/faq.html

“您可以通过将HUP信号发送给gunicorn来优雅地重新加载:$ kill -HUP masterpid

或使用完整的命令行:

pkill -HUP -f '/usr/bin/python /usr/bin/gunicorn -w 5 -b 127.0.0.1:5000 myapp:app'