用start-stop-daemon啟動Nginx
在前面學習Ubuntu apt-get install nginx 建立的nginx啟動指令碼中,看到start-stop-daemon的用法。
迅速查了一下手冊(用man start-stop-daemon)。這個程式用來啟動和關閉系統層級的進程。
下面我用該命令啟動我自己編譯的nginx程式:
start-stop-daemon--start--quiet--make-pidfile--pidfile/opt/nginx.pid--exec/home/chenshu/nginx/bin/nginx---c/home/chenshu/nginx/etc_nginx/nginx.conf
注意,這裡都使用絕對路徑,相對路徑會有問題。
- –pidfile 指定了儲存進程id的檔案 /opt/nginx.pid
–exec 指定了可執行程式
– 之後加上傳遞給nginx的參數 -c /home/chenshu/nginx/etc_nginx/nginx.conf
–make-pidfile 使用 是因為有時候start-stop-daemon 不產生pidfile
單獨運行nginx的時候,還可以指定 -t參數用於測試-c 參數指定的設定檔是否正確。
由於我要將所有的nginx程式,日誌,配置都放在/home/dist/carrier/nginx目錄下,因此對應的修改啟動指令碼/etc/init.d/nginx
由於沒有找到辦法指定error log的位置. 因此現在繞過的方法是 編譯nginx的時候使用–prefix=/home/dist/carrier/nginx參數。
這裡用到了之前沒有用的DAEMON_OPTS變數,傳遞-c參數。注意,必須用雙引號。
#!/bin/sh ### BEGIN INIT INFO # Provides: nginx # 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 nginx web server # Description: starts nginx using start-stop-daemon ### END INIT INFO PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin CARRIER_HOME=/home/dist/carrier DAEMON=$CARRIER_HOME/nginx/bin/nginx PID_FILE=$CARRIER_HOME/nginx/nginx.pid C>$CARRIER_HOME/nginx/conf/nginx.conf DAEM>"-c $CONFIG_FILE"NAME=nginx DESC=nginx # Include nginx defaults if available if [ -f /etc/default/nginx ]; then . /etc/default/nginx fitest -x $DAEMON || exit0set-e. /lib/lsb/init-functions test_nginx_config() { if$DAEMON -t $DAEMON_OPTS >/dev/null 2>&1; thenreturn0else$DAEMON -t $DAEMON_OPTSreturn $? fi} case"$1"in start) echo -n "Starting $DESC: " test_nginx_config # Check if the ULIMIT is set in /etc/default/nginx if [ -n "$ULIMIT" ]; then# Set the ulimits ulimit $ULIMITfi start-stop-daemon --start --quiet --make-pidfile --pidfile $PID_FILE --exec $DAEMON -- $DAEMON_OPTS || trueecho"$NAME." ;; stop) echo -n "Stopping $DESC: " start-stop-daemon --stop --quiet --pidfile $PID_FILE --exec $DAEMON || trueecho"$NAME." ;; restart|force-reload) echo -n "Restarting $DESC: " start-stop-daemon --stop --quiet --pidfile $PID_FILE --exec $DAEMON || true sleep 1 test_nginx_config # Check if the ULIMIT is set in /etc/default/nginx if [ -n "$ULIMIT" ]; then# Set the ulimits ulimit $ULIMITfi start-stop-daemon --start --quiet --make-pidfile --pidfile $PID_FILE --exec $DAEMON -- $DAEMON_OPTS || trueecho"$NAME." ;; reload) echo -n "Reloading $DESC configuration: " test_nginx_config start-stop-daemon --stop --signal HUP --quiet --pidfile $PID_FILE --exec $DAEMON || trueecho"$NAME." ;; configtest|testconfig) echo -n "Testing $DESC configuration: "if test_nginx_config; thenecho"$NAME."elseexit $? fi ;; status) status_of_proc -p $PID_FILE"$DAEMON" nginx && exit0 || exit $? ;; *) echo"Usage: $NAME {start|stop|restart|reload|force-reload|status|configtest}" >&2exit1 ;; esacexit0
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($('
').text(i)); }; $numbering.fadeIn(1700); }); });
以上就介紹了 用start-stop-daemon啟動Nginx,包括了方面的內容,希望對PHP教程有興趣的朋友有所協助。