python 后台服务

python

centos 6x

#!/bin/sh

# chkconfig: 123456 90 10

# TTS Server for Speech Synthesis

#

workdir=/etc/speech

start() {

cd $workdir

/usr/bin/python /etc/speech/TTSserver.py &

echo "Server started."

}

stop() {

pid=`ps -ef | grep \'[p]ython /etc/speech/TTSserver.py\' | awk \'{ print $2 }\'`

echo $pid

kill $pid

sleep 2

echo "Server killed."

}

case "$1" in

start)

start

;;

stop)

stop

;;

restart)

stop

start

;;

*)

echo "Usage: /etc/init.d/tornado-tts {start|stop|restart}"

exit 1

esac

exit 0

以上是 python 后台服务 的全部内容, 来源链接: utcz.com/z/388840.html

回到顶部