7 Star 46 Fork 12

xiuj/xc-union

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
stop-xc-union.sh 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
# 查找xc-union.jar相关进程的PID
pids=$(pgrep -f xc-union*.jar)
# 判断是否找到相关进程
if [ -z "$pids" ]; then
echo "未找到xc-union.jar相关进程,无需进行关闭操作。"
exit 0
fi
# 尝试正常关闭进程(发送SIGTERM信号)
echo "正在尝试正常关闭xc-union.jar相关进程..."
echo "$pids" | xargs kill
# 等待一段时间,让进程有机会正常关闭,这里等待5秒,可根据实际情况调整
sleep 5
# 再次检查进程是否还存在
remaining_pids=$(pgrep -f xc-union*.jar)
if [ -z "$remaining_pids" ]; then
echo "xc-union.jar相关进程已成功关闭。"
exit 0
fi
# 如果还有进程未关闭,强制关闭它们(发送SIGKILL信号,谨慎使用)
echo "仍有部分xc-union.jar相关进程未正常关闭,将强制关闭..."
echo "$remaining_pids" | xargs kill -9
# 最后再次确认进程是否都已关闭
final_pids=$(pgrep -f xc-union.jar)
if [ -z "$final_pids" ]; then
echo "所有xc-union.jar相关进程已全部关闭。"
else
echo "部分进程强制关闭失败,请手动检查并处理。"
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xc_java/xc-union.git
[email protected]:xc_java/xc-union.git
xc_java
xc-union
xc-union
master

搜索帮助