sigterm和sigkill之间有多少时间延迟

问题描述

我正在运行Java应用程序的jar包文件

所以,我想通过kill信号正常关闭java进程

我用kill信号写了bash命令

在我的bash shell代码下面

你能不能回答我的问题?

if [[ -n "$pid" ]]; then
    kill -15 $pid
    WAR_FILE=$(ls -t1 $WAR_LOCATION/*{jar,war} 2>/dev/null | head -n1)
    echo "$WAR_FILE process stopped by SIGTERM (15)"
fi

echo "wait 5 seconds ... to see if the process has ended."
sleep 5 ## this is good practice ? 

# if process still remains,use SIGKILL signal
if [[ -n "$pid" ]]; then 
    echo ""
    kill -9 $pid
    echo "$WAR_FILE process stopped by SIGKILL (9)"
fi

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)