调用shell / python脚本

时间:2017-06-20 01:18:37

标签: python linux bash shell start-stop-daemon

我刚刚熟悉Linux,由于目录问题,我似乎无法让start-stop-daemon运行python脚本。在linux文件结构中,我有文件:

〜/ test.txt的

THIS LINE IS A TEST

〜/ test.py

#!/usr/bin/python
import time

with open("test.txt") as f:
    while True:
        try:
            print("Hello World")
            print(f.readline())
            time.sleep(2) 
        except KeyboardInterrupt:
            f.close()
            break

〜/ test.sh

#!/bin/bash

echo "SHELL SCRIPT SUCCESS" > /var/log/test.log
cd ~/
./test.py > /var/log/test.log

从任何目录调用sudo bash ~/test.sh后, test.log 将按预期填充,其中stdout源自 test.py 。出于某种原因,启动以下start-stop-daemon服务脚本将生成 test.log ,但不会使用stdout填充它:

/etc/init.d/test

#!/bin/sh

### BEGIN INIT INFO
# Provides:     Python test script
# Required-Start:   $remote_fs $syslog
# Required-Stop:    $remote_fs $syslog
# Default-Start:    2 3 4 5
# Default-Stop:     0 1 6
# Short-Description:    Prints out daemonized argument
# Description:      Creates output of argument
### END INIT INFO

DAEMON_DIR=/home/alex
DAEMON=$DAEMON_DIR/test.sh
DAEMON_NAME=test

DAEMON_OPTS="hello"
DAEMON_USER=root
PYTHON=/usr/bin/python

PIDFILE=/var/run/$DAEMON_NAME.pid

. /lib/lsb/init-functions

do_start () {
    log_daemon_msg "Starting system $DAEMON_NAME daemon"
    #start-stop-daemon --start --background --pidfile $PIDFILE --make-pidfile --user $DAEMON_USER --exec $PYTHON --startas $DAEMON 
    start-stop-daemon --start --background --pidfile $PIDFILE --make-pidfile --chuid $DAEMON_USER --startas /bin/bash  /home/alex/test.sh
    log_end_msg $? 
}

do_stop () {
    log_daemon_msg "Stopping system $DAEMON_NAME daemon"
    start-stop-daemon --stop --pidfile $PIDFILE --retry 10
    log_end_msg $?
}

case "$1" in

    start|stop)
    do_${1}
    ;;

    restart|reload|force-reload)
    do_stop
    do_start
    ;;

    status)
    status_of_proc "$DAEMON_NAME" "$DAEMON" && exit 0 || exit $?
    ;;

    *)
    echo "Usage: /etc/init.d/$DAEMON_NAME {start|stop|restart|status}"
    exit 1
    ;;

esac
exit 0

这是一个可以在start-stop-daemon内解决的目录问题吗? 或者,我可以接受其他可以通过冷启动(即没有cron作业)持续存在的脚本服务方法

1 个答案:

答案 0 :(得分:0)

尝试使用绝对路径调用cd,例如/home/alexjg/而不是~/;它之前被打破的原因是在你的例子中你使用sudo来保持用户的主目录运行它。但是,当您从init调用bash脚本时,它将使用root的主目录,而不包含test.py

创建文件是因为重定向仍在继续;但是因为启动Python失败了没有输出。