自定义linux守护程序不会停止使用" service stop"

时间:2016-03-15 16:23:34

标签: python ubuntu service start-stop-daemon pyinotify

我已经编写了一个自定义python守护程序,它通过ubuntu 14.04上的init.d脚本作为服务运行。启动服务工作正常,但是当我尝试执行" service monitor stop"时,守护程序不会终止。我使用pyinotify来守护文件监视器以进行更改。

在init.d脚本中:

PATH=/sbin:/usr/sbin:/bin:/usr/bin
DESC="Monitor files"
NAME=monitor
DAEMON=/usr/bin/python
DAEMON_ARGS="/home/user/python/monitor.py"
PIDFILE=/home/user/logs/monitor.pid
LOGFILE=/home/user/logs/monitor.log
SCRIPTNAME=/etc/init.d/$NAME

...

do_stop()
{
    # Return
    #   0 if daemon has been stopped
    #   1 if daemon was already stopped
    #   2 if daemon could not be stopped
    #   other if a failure occurred
    start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name $NAME
    RETVAL="$?"
    # Many daemons don't delete their pidfiles when they exit.
    rm -f $PIDFILE
    return "$RETVAL"
    echo "done"
}

...

case "$1" in
  start)
    [ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME"
    do_start
    case "$?" in
            0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
            2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
    esac
    ;;
  stop)
    [ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME"
    do_stop
    case "$?" in
            0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
            2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
    esac
    ;;

...

为了确保守护程序正确处理SIGERM,我可以手动运行它:

bash$ /usr/bin/python /home/user/python/monitor.py
bash$ kill -Term PID

守护程序成功处理SIGTERM并正确退出。

我似乎无法弄清楚为什么当我做“服务监控停止"虽然。

1 个答案:

答案 0 :(得分:0)

检查进程$NAME是否正确,并传递给start-stop-daemon --stop命令。我刚刚遇到这个问题,因为我运行的进程在分叉其守护进程时最终得到一个不同的名称。尝试运行此命令以查看进程命令名称:

ps -o comm= $(cat /home/user/logs/monitor.pid)

我打赌你输出这个(而不是monitor):

python

然后将您的停止命令更改为这样,用python代替$NAME

start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name python