우분투의 start-stop-daemon에 대한 많은 훌륭한 문서를 발견했으며 바이너리에 대한 매뉴얼 페이지가 daemon
있습니다.
그러나 rhel / centos 스크립트에서 데몬을 시작하는 정식 방법을 말할 수있는 것은 소스 /etc/init.d/functions
를 사용하여 daemon()
함수 를 사용하는 것입니다. 그러나 좋은 예나 문서를 찾을 수 없습니다.
rhel / centos-6 init 스크립트에서 데몬을 시작하는 일반적인 방법은 무엇입니까?
나의 첫번째 시도는 :
#!/bin/bash
source /etc/init.d/functions
daemon --user USER nohup /path/to/your/binary arg1 arg2 >/dev/null 2>&1 &
답변
찾고있는 설명서와 예제는 /usr/share/doc/initscripts-*/sysvinitfiles
CentOS / RHEL에 있습니다. 이 daemon
기능에 대한 설명서는 다음과 같습니다 .
daemon [–check] [–user] [+/- nicelevel] 프로그램 [인수] [&]
Starts a daemon, if it is not already running. Does other useful things like keeping the daemon from dumping core if it terminates unexpectedly. --check <name>: Check that <name> is running, as opposed to simply the first argument passed to daemon(). --user <username>: Run command as user <username>
CentOS / RHEL 6에서는 sysv init 스크립트를 작성하는 대신 시작 작업 파일을 사용하는 옵션도 있습니다.