linux – 如何正确处理服务脚本中pid.file的删除

前端之家收集整理的这篇文章主要介绍了linux – 如何正确处理服务脚本中pid.file的删除前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试为应用程序编写服务脚本.所以我可以像这样控制它:
./myscript.sh start|stop|status

在启动pid.file并创建进程ID时,我可以根据它检查状态并停止进程.在stop命令中我删除了pid.file – 没关系.

但是如果应用程序以异常方式崩溃 – 关闭电源等,pid.file不会删除,我需要手动删除它.

如何在脚本中正确处理这种异常情况?

解决方法

您可以验证pid是否正在运行并且属于您的应用程序:
pid=$(< "$pidfile")   # a bash builtin way to say: pid=$(cat $pidfile)
if  kill -0 $pid &&
    [[ -r /proc/$pid/cmdline ]] && # find the command line of this process
    xargs -0l echo < /proc/$pid/cmdline | grep -q "your_program_name"
then
    # your application is running
    true
else
    # no such running process,or some other program has acquired that pid:
    # your pid file is out-of-date
    rm "$pidfile"
fi
原文链接:https://www.f2er.com/linux/396896.html

猜你在找的Linux相关文章