gpt4 book ai didi

gunicorn - 如何停止这个 gunicorn 服务器?

转载 作者:行者123 更新时间:2023-12-04 12:50:47 29 4
gpt4 key购买 nike

我尝试了几乎所有命令来杀死 gunicorn 服务器。但没有任何效果。我怎样才能杀死这些进程并释放 80 端口

12652 ?        Ss     0:00 sudo gunicorn -b 0.0.0.0:80 foss.wsgi:application
12654 ? S 0:00 /usr/bin/python /usr/local/bin/gunicorn -b 0.0.0.0:80 foss.wsgi:application
12659 ? S 0:00 /usr/bin/python /usr/local/bin/gunicorn -b 0.0.0.0:80 foss.wsgi:application
12709 ? Ss 0:00 sudo gunicorn -b 0.0.0.0:80 foss.wsgi:application
12711 ? S 0:00 /usr/bin/python /usr/local/bin/gunicorn -b 0.0.0.0:80 foss.wsgi:application
12717 pts/11 S+ 0:00 grep --color=auto gunicorn

最佳答案

获取 pid,例如此处的 12652,并发出以下命令:

sudo kill -9 12652

这将发出 SIGKILL ,它不能被应用程序捕获或忽略。

如果服务器在此之后立即再次启动,则表示存在一些进程控制系统或初始化脚本,例如 supervisordsystemd盒子上配置的,就是管理服务,可以 autorestart when the service goes down .

您必须在过程控制系统中禁用它,例如 supervisord stop yourapp .

关于gunicorn - 如何停止这个 gunicorn 服务器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39047125/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com