ฉันพยายามควบคุมโปรแกรมที่ใช้ 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.
ดังนั้นฉันเดาว่ามีบางอย่างผิดปกติกับส่วนเริ่มต้นหรือไม่