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

nginx重启脚本

时间:2017-08-22 00:31:09      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:nginx重启脚本

重启脚本:

#!/bin/bash

PID=`cat /usr/local/nginx/logs/nginx.pid` >/dev/null 2>&1
case $1 in
start)
/usr/local/nginx/sbin/nginx
;;
stop)
kill -TERM $PID
;;
quit)
kill -QUIT $PID
;;
reload)
kill -HUP $PID
;;
restart)
kill -TERM $PID
/usr/local/nginx/sbin/nginx
;;
status)
elinks http://localhost -dump >/dev/null 2>&1
if [ $? -ne 0 ];then
echo "nginx stop"
else
echo "nginx running"
fi
esac


nginx重启脚本

标签:nginx重启脚本

原文地址:http://wupengfei.blog.51cto.com/7174803/1958135

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