데몬을 시작하는 init 스크립트가 있습니다. 문제는 루트로 실행된다는 것입니다. "deploy"라는 사용자로 실행하고 싶습니다. 우분투 12.04
#! /bin/sh
# File: /etc/init.d/unicorn
### BEGIN INIT INFO
# Provides: unicorn
# Required-Start: $local_fs $remote_fs $network $syslog
# Required-Stop: $local_fs $remote_fs $network $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: starts the unicorn web server
# Description: starts unicorn
### END INIT INFO
DAEMON=/usr/local/bin/unicorn_rails
DAEMON_OPTS="-c /var/www/current/config/unicorn.rb -D"
NAME=unicorn
DESC="Unicorn"
PID=/var/www/current/shared/pid/unicorn.pid
case "$1" in
start)
echo -n "Starting $DESC: "
$DAEMON $DAEMON_OPTS
echo "$NAME."
;;
*)
echo "Usage: $NAME {start|stop|restart|reload}" >&2
exit 1
;;
esac
exit 0
chuid 옵션이 적용되지 않고 프로세스가 루트로 실행되므로 테스트 중에 "service"명령을 사용하여 deamon을 시작하지 마십시오.
—
pasqal
커널이 이미 시스템의 사용자를 알고 난 후에 init.d의 모든 스크립트가 호출 됩니까?
—
ransh 2016 년
$DAEMON $DAEMON_OPTS
에su - deploy -c "$DAEMON $DAEMON_OPTS"