我正在尝试控制基于python的程序(不会与控制台分离)
#!/bin/bash
user=nobody
pid=/var/run/xx.pid
name=xx
prog=/xx.py
case $1 in
start)
/sbin/start-stop-daemon --start -b --oknodo --user "$user" --name "$name" --pidfile "$pid" --startas "$prog" --chuid nobody -- --daemon
;;
stop)
/sbin/start-stop-daemon --stop --oknodo --user "$user" --name "$name" --pidfile "$pid" --retry=TERM/5/KILL/1
;;
restart)
;;
*)
;;
esac
开始部分工作正常。我可以看到脚本已启动并正在运行,但是停止部分却没有。它只是说No xx found running; none killed.
所以我想开始部分有问题吗?