当我运行" supervisorctl status hitbot"然后我面对这个错误
FATAL退出太快(流程日志可能包含详细信息)
的#/ bin中/ gunicorn_start
这里** BIND = ip_address:port **
/etc/supervisor/conf.d/hitbot.conf
但是当它通过" bash / bin / gunicorn_start" * 测试gunicorn_start时它工作正常
答案 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'