#!/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

售后响应及时
7×24小时客服热线
数据备份
更安全、更高效、更稳定
价格公道精准
项目经理精准报价不弄虚作假
合作无风险
重合同讲信誉,无效全额退款