您的位置:首页 > 运维架构 > Nginx

Nginx服务启动脚本

2015-12-23 17:29 681 查看
#!/bin/sh
#filename:Nginx_start.sh
#date:2015-12-23
#作者:linuxzkq
#Email:1729294227@qq.com
#version:v1.0

. /etc/init.d/functions
path=/application/nginx/sbin/nginx
pid=/application/nginx/logs/nginx.pid
process=`ps -ef|grep nginx|grep -v grep|wc -l`

#USAGE
function USAGE(){
echo "USAGE:$0 {start|stop|restart|reload|status}"
exit 0
}

#start
function start(){
$path &>/dev/null
if [ $? -eq 0 ];then
action "Nginx is started:" /bin/true
else
action "Nginx is started:" /bin/false
fi
}

#stop
function stop(){
if [ $process -ne 0 ] && [ -s "$pid" ];then
killall nginx
action "Nginx is stopped:" /bin/true
else
action "Nginx is stopped:" /bin/false
fi
}

#reload
function reload(){
$path -s reload
}

#status
function status(){
if [ $process -ne 0 ] && [ -s "$pid" ];then
echo "Nginx is running."
else
echo "No Nginx Process!"
fi
}

#restart
function restart(){
stop
start
}

case "$1" in
start)
start
;;
stop)
stop
;;
status)
status
;;
restart)
restart
;;
reload)
reload
;;
*)
echo "Error,Please use an USAGE!"
USAGE
;;
esac

本文出自 “兰州linux运维” 博客,请务必保留此出处http://linuxzkq.blog.51cto.com/9379412/1727617
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: