Script control Nginx startup, shutdown, reload, etc.

Source: Internet
Author: User

#!/bin/bash

Start () {

If [' netstat-tnlp | grep-w | wc-l '-eq 1];then

echo "Nginx is running ..."

Exit 1

Else

/application/nginx/sbin/nginx

Sleep 2

echo "Nginx start successed ..."

Fi

}

Stop () {

If [' netstat-tnlp | grep-w | wc-l '-ne 1];then

echo "Nginx is not running ..."

Exit 1

Else

/application/nginx/sbin/nginx-s stop

Sleep 2

echo "Nginx Stop successed ..."

Fi

}

Reload () {

If [' netstat-tnlp | grep-w | wc-l '-ne 1];then

echo "Nginx is not running ..."

Exit 1

Else

/application/nginx/sbin/nginx-s Reload

Sleep 2

echo "Nginx Reload successed ..."

Fi

}

Restart () {

Reload

}


Case "$" in

Start

Start

;;

Stop

Stop

;;

Reload

Reload

;;

Restart

Reload

;;

*)

echo "usage:$0 {Start|stop|reload|restart}"

;;

Esac

This article is from the "burning Years of Passion" blog, please be sure to keep this source http://liuzhengwei521.blog.51cto.com/4855442/1771899

Script control Nginx startup, shutdown, reload, etc.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.