[root@localhost ~]#vi /etc/init.d/nginx #建立檔案
#!/bin/bash# nginx Startup script for the Nginx HTTP Server# it is v.0.0.2 version.# chkconfig: - 85 15# description: Nginx is a high-performance web and proxy server.# It has a lot of features, but it's not for everyone.# processname: nginx# pidfile: /var/run/nginx.pid# config: /usr/local/nginx/conf/nginx.conf#nginx程式路徑nginxd=/usr/sbin/nginx#nginx設定檔路徑nginx_c/nginx/nginx.conf#nginx pid檔案的路徑,可以在nginx的設定檔中找到nginx_pid=/var/run/nginx/nginx.pidRETVAL=0prog="nginx"# Source function library.. /etc/rc.d/init.d/functions# Source networking configuration.. /etc/sysconfig/network# Check that networking is up.[ ${NETWORKING} = "no" ] && exit 0[ -x $nginxd ] || exit 0# Start nginx daemons functions.start() {if [ -e $nginx_pid ];then echo "nginx already running...." exit 1fi echo -n $"Starting $prog: " daemon $nginxd -c ${nginx_config} RETVAL=$? echo [ $RETVAL = 0 ] && touch /var/lock/subsys/nginx return $RETVAL}# Stop nginx daemons functions.stop() { echo -n $"Stopping $prog: " killproc $nginxd RETVAL=$? echo [ $RETVAL = 0 ] && rm -f /var/lock/subsys/nginx /var/run/nginx.pid}# reload nginx service functions.reload() { echo -n $"Reloading $prog: " #kill -HUP `cat ${nginx_pid}` killproc $nginxd -HUP RETVAL=$? echo}# See how we were called.case "$1" instart) start ;;stop) stop ;;reload) reload ;;restart) stop start ;;status) status $prog RETVAL=$? ;;*) echo $"Usage: $prog {start|stop|restart|reload|status|help}" exit 1esacexit $RETVAL
[root@localhost ~]#chmod +x /etc/init.d/nginx #加執行許可權[root@localhost ~]#chkconfig --add nginx #將nginx做成服務[root@localhost ~]# chkconfig --list |grep nginxnginx 0:off 1:off 2:off 3:off 4:off 5:off 6:off[root@localhost ~]# chkconfig nginx on #將nginx做成開機啟動[root@localhost ~]# chkconfig --list |grep nginxnginx 0:off 1:off 2:on 3:on 4:on 5:on 6:off
以上就介紹了將nginx做成服務並開機啟動,包括了nginx,開機啟動方面的內容,希望對PHP教程有興趣的朋友有所協助。