码迷,mamicode.com
首页 > 其他好文 > 详细

启动nginx程序脚本

时间:2017-11-09 19:49:24      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:安装nginx   启动程序shell脚本   

#!/bin/bash


PID=/usr/local/nginx/logs/nginx.pid


#定义开启服务器的函数

start(){

     if [ -f $PID ];then

        echo "服务已经启动"

     else

/usr/local/nginx/sbin/nginx

     fi

}

#定义关闭服务的函数

stop(){

        if [ !-f $PID ];then

          echo "该服务已经关闭"

        else

          /usr/local/nginx/sbin/nginx -s stop

        fi

}

#定义查看状态的函数

status(){

        if [ -f $PID ];then

           echo "该服务已经启动"

        else

           echo “该服务已经关闭”

        fi

}

#定义主代码,判断用户的位置参数,根据用户的不同参数,执行不同的函数代码

case $1 in

start)

        start;;

stop)

        stop;;

restart)

        stop

        start;;

status)

        status;;

*)

        echo "用法$0[start|stop|restart|status]"

esac


启动nginx程序脚本

标签:安装nginx   启动程序shell脚本   

原文地址:http://13451993.blog.51cto.com/13441993/1980398

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!