首页 电脑 电脑学堂 查看内容

Nginx服务控制脚本

2011-11-24 11:03 658 0

摘要: 使用chkconfig和service命令管理nginx服务的脚本: [root@localhost~]# vi /etc/init.d/nginx #!/bin/bash #chkcon...
关键词: nbsp nginx localhost service root chkconfig start stop reload 脚本

使用chkconfig和service命令管理nginx服务的脚本: [root@localhost~]# vi /etc/init.d/nginx #!/bin/bash #chkconfig: - 99 20 #description: Nginx Service Control Script case "$1" in   start)          /usr/sbin/nginx             ;;   stop)          /usr/bin/killall -s QUIT nginx             ;;   restart)          $0 stop          $0 start          ;;   reload)          /usr/bin/killall -s HUP nginx          ;;   *)     echo "Usage:$0 {start|stop|restart|reload}"     exit 1 esac exit 0 [root@localhost~]# chmod a+x /etc/init.d/nginx [root@localhost~]# chkconfig --add nginx [root@localhost~]# chkconfig --level 2345 nginx on 接下来nginx脚本可以通过service命令进行管理控制。 [root@localhost~]# service nginx stop [root@localhost~]# service nginx start [root@localhost~]# service nginx reload
声明:文章版权归原作者所有 部分文章转自互联网 如有侵权请联系 [邮箱地址] 删除

路过

雷人

握手

鲜花

鸡蛋

最新评论

返回顶部