代码拉取完成,页面将自动刷新
#!/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
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。