退出/关闭/重启gunicorn进程

作者:han 分类: F 发布于:2018-11-20 14:02 ė45次浏览 60条评论

在工作中,会发现gunicorn启动的web服务,无论怎么使用kill -9 进程号都是无法杀死gunicorn,经过我一番百度和谷歌,发现想要删除gunicorn进程其实很简单。

第一步获取Gunicorn进程树:

通过执行如下命令,可以获取Gunicorn进程树:

pstree -ap|grep gunicorn

得到的结果如下

Python

  1. | | |-grep,14519 --color=auto gunicorn
  2. | `-gunicorn,28097 /usr/local/bin/gunicorn query_site.wsgi:application -c ...
  3. | |-gunicorn,14226 /usr/local/bin/gunicorn query_site.wsgi:application -c ...
  4. | | |-{gunicorn},14229
  5. | | |-{gunicorn},14230
  6. | | |-{gunicorn},14231
  7. | | |-{gunicorn},14232
  8. | | |-{gunicorn},14233
  9. | | |-{gunicorn},14234
  10. | | |-{gunicorn},14236
  11. | | |-{gunicorn},14237
  12. | | |-{gunicorn},14238
  13. | | |-{gunicorn},14239
  14. | | |-{gunicorn},14240
  15. | | |-{gunicorn},14241
  16. | | |-{gunicorn},14242
  17. | | |-{gunicorn},14243
  18. | | `-{gunicorn},14244

2. 重启Gunicorn任务

Python
kill -HUP 14226

3. 退出Gunicorn任务

Python
kill -9 28097

执行上述命令后,再次执行“pstree -ap|grep gunicorn”,我们很容易发现,除了主进程,其他的Gunicorn进程都已经销毁,并新建了进程(进程ID发生了变化)。

本文出自 点滴记忆,转载时请注明出处及相应链接。

0

Ɣ回顶部