在工做中,會發現gunicorn啓動的web服務,不管怎麼使用kill -9 進程號都是沒法殺死gunicorn,通過我一番百度和谷歌,發現想要刪除gunicorn進程其實很簡單。html
經過執行以下命令,能夠獲取Gunicorn進程樹:web
pstree -ap|grep gunicorn
獲得的結果以下:
bash
kill -HUP 85898
kill -9 74430
執行上述命令後,再次執行「pstree -ap|grep gunicorn」,咱們很容易發現,除了主進程,其餘的Gunicorn進程都已經銷燬,並新建了進程(進程ID發生了變化)。post
本文地址:http://www.chenxm.cc/post/573.htmlcode