Nginx启动脚本-创新互联
#!/bin/sh
#nginx start script
#Date:2017-6-21
#Author:xcn(baishuchao@yeah.net)
#version 2.0
RETVAL=0
path="/application/nginx"
#Source functions library
. /etc/init.d/functions
start(){
if [ ! -f "$path/logs/nginx.pid" ]
then
[ -x $path/sbin/nginx ]||exit 1
$path/sbin/nginx
RETVAL=$?
if [ -f $path/logs/nginx.pid ];then
action "Nginx startup" /bin/true
else
action "Nginx startup" /bin/false
fi
else
echo "Nginx is running."
fi
return $RETVAL
}
stop(){
if [ ! -f "$path/logs/nginx.pid" ]
then
echo "nginx is not running.need not to stop it."
else
[ -x $path/sbin/nginx ]||exit 1
[ -f "$path/logs/nginx.pid" ]&&{
kill `cat $path/logs/nginx.pid`
RETVAL=$?
}
if [ ! -f "$path/logs/nginx.pid" ];then
action "Nginx is stopped." /bin/true
else
action "Nginx is stopped." /bin/false
fi
fi
return $RETVAL
}
case "$1" in
start)
start
RETVAL=$?
;;
stop)
stop
RETVAL=$?
;;
restart)
$0 stop
sleep 2
$0 start
RETVAL=$?
;;
reload)
$path/sbin/nginx reload
RETVAL=$?
;;
*)
echo "USAGE:$0 {start|stop|restart|reload}"
esac
exit $RETVAL
成都创新互联公司主营向阳网站建设的网络公司,主营网站建设方案,
成都app软件开发公司,向阳h5
微信小程序搭建,向阳网站营销推广欢迎向阳等地区企业咨询
另外有需要云服务器可以了解下创新互联cdcxhl.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
新闻名称:Nginx启动脚本-创新互联
文章出自:
http://dzwzjz.com/article/cdoige.html