gunicorn部署flask--出现错误解决方案
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gunicorn部署flask--出现错误解决方案相关的知识,希望对你有一定的参考价值。
参考技术Agunicorn -c gunicorn.conf.py wsgi:app
-c指定执行文件
wsgi是启动文件名称
gunicorn.errors.HaltServer: <HaltServer \'Worker failed to boot.\' 3>
在启动得时候加入命令:
如下: gunicorn wsgi:app -c /gunicorn.conf.py --log-level=debug
然后在我们配置的日志文件中可以找到错误进行准确定位:
以上是关于gunicorn部署flask--出现错误解决方案的主要内容,如果未能解决你的问题,请参考以下文章
Flask + Nginx + Gunicorn + Gevent部署