Gunicorn 监控报错
报错信息如下:
Found no master process with name: gunicorn: master[app]
问题原因
启动 Gunicorn 时,未添加 --name
这项参数,或者没有安装 setproctitle
这个模块
解决方案
如果未安装 setproctitle
,可执行命令 pip install setproctitle
进行安装。
Gunicorn 启动时,需添加 --name
参数,如下:
gunicorn --name app -w 4 myapp:app