守护进程

守护进程启停命令:start-stop-daemon

-S|--start                 开启
-K|--stop                 停止
-T|--status             得到程序的状态
-b|--background         后台运行
-R|--retry     等待timeout的时间,检查进程是否停止,如果没有发送KILL信号

-x|--exec     program to start/check if it is running
-q|--quiet                不要输出警告
-v|--verbose            显示运行过程信息

 

开始守护进程:start-stop-daemon -S -b -x  XXX

停止守护进程:start-stop-daemon -K -b -x  XXX

 

你可能感兴趣的:(Linux)