且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

centos6.5 nginx开机启动

更新时间:2022-10-01 12:52:47

/etc/init.d/下添加nginxd文件,内容如下:

centos6.5 nginx开机启动
#!/bin/bash  
#  
#chkconfig: - 85 15  
#description: Nginx is a World Wide Web server.  
#processname: nginx  

nginx=/usr/local/nginx/nginx
conf=/usr/local/nginx/nginx.conf

case $1 in  
       start)  
              echo -n "Starting Nginx"  
              $nginx -c $conf  
              echo " done"  
       ;;  

       stop)  
              echo -n "Stopping Nginx"  
              killall -9 nginx  
              echo " done"  
       ;;  

       test)  
              $nginx -t -c $conf  
       ;;  

        reload)  
              echo -n "Reloading Nginx"  
              ps auxww | grep nginx | grep master | awk '{print $2}' | xargs kill -HUP  
              echo " done"  
       ;;  

        restart)  
              $0 stop  
              $0 start  
       ;;  

       show)  
              ps -aux|grep nginx  
       ;;  

       *)  
              echo -n "Usage: $0 {start|restart|reload|stop|test|show}"  
       ;;  

esac
centos6.5 nginx开机启动

添加执行权限

chmod +x /etc/init.d/nginxd

添加到服务

chkconfig --add nginxd

设置开机启动

chkconfig nginxd on







本文转自秋楓博客园博客,原文链接:http://www.cnblogs.com/rwxwsblog/p/5420982.html,如需转载请自行联系原作者