필자는 기본적으로 로깅이있는 하나의 라이너 인 셸 스크립트를 가지고 있는데 init 스크립트 에서이 스크립트를 실행하려고합니다. Redhat이 사용할 수 없는 것으로 보이므로 daemon
내부 함수를 사용하여 /etc/init.d/functions
실행하고 start-stop-daemon
있습니다. init 스크립트 ( /etc/init.d/script start
)를 호출 하면 프로세스를 완료하고 실행하지 않고 포 그라운드에 유지됩니다. 이 스크립트를 데몬 화하는 올바른 방법은 무엇입니까?
실행할 스크립트 :
# conf file where variables are defined
. /etc/script.conf
echo "Starting..." | logger -i
echo "Monitoring $LOG_LOCATION." | logger -i
echo "Sending to $MONITOR_HOST:$MONITOR_PORT." | logger -i
tail -n 1 -F $LOG_LOCATION |
grep WARN --line-buffered |
/usr/bin/nc -vv $MONITOR_HOST $MONITOR_PORT 2>&1 |
logger -i
초기화 스크립트 :
#!/bin/bash
# Source Defaults
. /etc/default/script
# Source init functions
. /etc/init.d/functions
prog=/usr/local/bin/script.sh
[ -f /etc/script.conf ] || exit 1
RETVAL=0
start()
{
# Quit if disabled
if ! $ENABLED; then
echo "Service Disabled in /etc/default/script"
exit 1
fi
echo "Starting $prog"
daemon $prog
RETVAL=$?
return $RETVAL
}
stop ()
{
echo -n $"Stopping $prog: "
killproc $prog
RETVAL=$?
return $RETVAL
}
reload()
{
echo "Reload command is not implemented for this service."
return $RETVAL
}
restart()
{
stop
start
}
condrestart()
{
echo "Not Implemented."
}
# See how we were called.
case "$1" in
start)
start
;;
stop)
stop
;;
status)
status $prog
;;
restart)
restart
;;
reload)
reload
;;
condrestart)
condrestart
;;
*)
echo $"Usage: $0 {start|stop|status|restart|condrestart|reload}"
RETVAL=1
esac
bash -vx를 사용한 마지막 ~ 20 줄 실행 :
+ case "$1" in
+ start
+ true
+ echo 'Starting /usr/local/bin/script.sh'
Starting /usr/local/bin/script.sh
+ daemon /usr/local/bin/script.sh
+ local gotbase= force=
+ local base= user= nice= bg= pid=
+ nicelevel=0
+ '[' /usr/local/bin/script.sh '!=' /usr/local/bin/script.sh ']'
+ '[' -z '' ']'
+ base=script.sh
+ '[' -f /var/run/script.sh.pid ']'
+ '[' -n '' -a -z '' ']'
+ ulimit -S -c 0
+ '[' -n '' ']'
+ '[' color = verbose -a -z '' ']'
+ '[' -z '' ']'
+ initlog -q -c /usr/local/bin/script.sh
#!/bin/bash -vx
합니까? 이 작업을 시도했지만 쉘 스크립트를 직접 실행하는 경우와 동일한 init 스크립트 출력을 생성하지 않았습니다.
bash -vx
. bash -vx /etc/init.d/script start
.
bash -vx ...
우리가 전경에 남아있는 것을 볼 수 있도록 스크립트를 실행 하고 마지막 줄을 게시하는 것이 유용합니다 .