关闭Gunicorn进程树

关闭Gunicorn进程

1 获取Gunicorn进程树:

pstree -ap|grep gunicorn

得到的结果如下

Python

1
2
3
4
5
6
7
|           |-grep,10363 --color=auto gunicorn
| |-gunicorn,10289 /root/anaconda3/envs/flask01/bin/gunicorn -w 4 -b 0.0.0.0:8005 app:app
| | |-gunicorn,10292 /root/anaconda3/envs/flask01/bin/gunicorn -w 4 -b 0.0.0.0:8005 app:app
| | |-gunicorn,10293 /root/anaconda3/envs/flask01/bin/gunicorn -w 4 -b 0.0.0.0:8005 app:app
| | |-gunicorn,10294 /root/anaconda3/envs/flask01/bin/gunicorn -w 4 -b 0.0.0.0:8005 app:app
| | `-gunicorn,10295 /root/anaconda3/envs/flask01/bin/gunicorn -w 4 -b 0.0.0.0:8005 app:app

2 重启Gunicorn任务

kill -HUP 10363

3 退出Gunicorn任务

kill -9 10363


关闭Gunicorn进程树
https://www.weiyalong.top/2021/03/07/关闭Gunicorn进程树/
作者
Dragon
发布于
2021年3月7日
许可协议