--admin --log_file=/var/log/centrifugo.log"
PIDFILE=/var/run/centrifugo.pid
case "$1" in
start)
echo -n "Starting Centrifugo"
start-stop-daemon --start --quiet --pidfile $PIDFILE --make-pidfile --background --exec $CENTRIFUGO -- $CENTRIFUGO_ARGS
echo "."
;;
stop)
echo -n "Stopping Centrifugo"
start-stop-daemon --stop --quiet --pidfile $PIDFILE
echo "."
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: /etc/init.d/centrifugo {start|stop|restart}"
exit 1
esac
exit 0
при выполнении команды /etc/init.d/centrifugo start
Выдает ошибку
Starting Centrifugostart-stop-daemon: unable to stat //centrifugo (No such file or directory)
.
Как исправить ?
В первой строчке полный путь нужен по ходу
Обсуждают сегодня