我正在尝试为应用程序编写服务脚本.所以我可以像这样控制它:
./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