扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
#!/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
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流