web-dev-qa-db-ja.com

Supervisordはssserverを実行しますが、CentOSでエラーを報告しますか?

私は次の監視対象の設定を持っています、/etc/supervisord.conf

...
[program:shadowsocks]
command=ssserver -c ~/config.json
autorestart=true
user=nobody
...

/etc/rc.d/init.d/supervisord

#!/bin/sh
#
# /etc/rc.d/init.d/supervisord
#
# Supervisor is a client/server system that
# allows its users to monitor and control a
# number of processes on UNIX-like operating
# systems.
#
# chkconfig: - 64 36
# description: Supervisor Server
# processname: supervisord

# Source init functions
. /etc/rc.d/init.d/functions

prog="supervisord"

prefix="/usr/"
exec_prefix="${prefix}"
prog_bin="${exec_prefix}/bin/supervisord"
PIDFILE="/var/run/$prog.pid"

start()
{
       echo -n $"Starting $prog: "
       daemon $prog_bin --pidfile $PIDFILE
       [ -f $PIDFILE ] && success $"$prog startup" || failure $"$prog startup"
       echo
}

stop()
{
       echo -n $"Shutting down $prog: "
       [ -f $PIDFILE ] && killproc $prog || success $"$prog shutdown"
       echo
}

case "$1" in

 start)
   start
 ;;

 stop)
   stop
 ;;

 status)
       status $prog
 ;;

 restart)
   stop
   start
 ;;

 *)
   echo "Usage: $0 {start|stop|restart|status}"
 ;;

esac

次に、次の手順を実行してセットアップし、起動します。

$ Sudo chmod +x /etc/rc.d/init.d/supervisord
$ Sudo chkconfig --add supervisord
$ Sudo chkconfig supervisord on
$ Sudo service supervisord start

その後、すべてがOKです。 shadowsocksを開始すると:

supervisorctl start shadowsocks

エラーを報告します:

shadowsocks: ERROR (abnormal termination)

ただし、直接実行した場合:

ssserver -c ~/config.json

それはうまく機能します。なぜこれがsupervisordで機能しないのですか?

1
arachide

AFAIK、supervisorはtidle~拡張をサポートしていません、~/config.jsonはリテラルとして扱われます。

~/config.jsonを絶対パス/path/to/config.jsonに変更し、nobodyからアクセスできることを確認する必要があります。

スーパーバイザー構成の詳細については、 ここ を参照してください。

1
cuonglm