5 Star 36 Fork 22

zhongYeHai/test-platform-api

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
kill.sh 796 Bytes
一键复制 编辑 原始数据 按行查看 历史
向前走 提交于 2023-10-20 15:11 . 累积更新
#!/bin/bash
# 查找 gunicorn 主进程 PID
gunicorn_pid=$(ps aux | grep 'python' | grep -v 'grep' | awk '{print $2}')
# 如果找到了主进程 PID
if [ -n "$gunicorn_pid" ]; then
echo "python 进程: $gunicorn_pid"
# 给主进程发 SIGINT 信号,请求正常停止进程
kill -INT $gunicorn_pid
# 睡眠 5 秒等待主进程结束
sleep 5
# 查找所有 gunicorn 子进程 PID
gunicorn_child_pids=$(pstree -p $gunicorn_pid | grep -oP '([0-9]+)(?=\))')
# 如果找到了子进程 PID
if [ -n "$gunicorn_child_pids" ]; then
echo "python 子进程: $gunicorn_child_pids"
# 杀死所有子进程
for pid in $gunicorn_child_pids; do
kill -9 $pid
done
fi
echo "python 进程及子进程 kill完成"
else
echo "没有找到python 进程"
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/Xiang-Qian-Zou/test-platform-api.git
git@gitee.com:Xiang-Qian-Zou/test-platform-api.git
Xiang-Qian-Zou
test-platform-api
test-platform-api
master

搜索帮助