Shell script nginx automation script

Shell script nginx automation script

This script can satisfy the operations of starting, stopping and restarting nginx

#!/bin/bash
. /etc/init.d/functions
function usage() {
  echo $"usage:$0 {start|stop|restart}"
  exit 1
}
function start() {
  /usr/local/nginx/sbin/nginx 
  sleep 1
  if [ `netstat -antlpe | grep nginx | ​​wc -l` -ge 0 ];then
 action "nginx is started." /bin/true 
  else
 action "nginx is started." /bin/false
  fi
}
function stop() {
  killall nginx &>/dev/null
  sleep 1
  if [ `netstat -antlpe | grep nginx | ​​wc -l` -eq 0 ];then
 action "nginx is stopped." /bin/true
  else
 action "nginx is stopped." /bin/false
  fi
}
function main() {
  if [ $# -ne 1 ];then
 usage $0
  fi
  case $1 in 
 start)
 start
 ;;
 stop)
 stop
 ;;
 restart)
 stop
 start
 ;;
 *)
 usage $0
 ;;
  esac
}
main $*

Run the test

1. Stop nginx

2. Enable nginx

3. Restart nginx

ok~

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Detailed process of installing nginx with shell script source code
  • How to install nginx under Linux
  • Detailed explanation of putting common nginx commands into shell scripts
  • Example of implementing nginx self-starting script under centos/rhel
  • Shell script to install Nginx service and customize Nginx version in one click

<<:  Detailed explanation of 6 ways of js inheritance

>>:  Example of using JSX to create a Markup component style development (front-end componentization)

Recommend

Tutorial diagram of installing centos7.3 on vmware virtual machine

VMware Preparation CentOS preparation, here is Ce...

Advantages and disadvantages of Table layout and why it is not recommended

Disadvantages of Tables 1. Table takes up more byt...

How to implement an array lazy evaluation library in JavaScript

Table of contents Overview How to achieve it Spec...

How to deploy MySQL 5.7 & 8.0 master-slave cluster using Docker

> Deploy MySQL 5.7 cluster master & slave ...

Avoid abusing this to read data in data in Vue

Table of contents Preface 1. The process of using...

CentOS 7 set grub password and single user login example code

There are significant differences between centos7...

Vue's guide to pitfalls using throttling functions

Preface In a common business scenario, we need to...

15 Best Practices for HTML Beginners

Here are 30 best practices for HTML beginners. 1....

MySQL 8.0.20 installation tutorial and detailed tutorial on installation issues

Original address: https://blog.csdn.net/m0_465798...

Analysis of MySQL concurrency issues and solutions

Table of contents 1. Background 2. Slow query cau...

MySQL database table partitioning considerations [recommended]

Table partitioning is different from database par...

How to transfer files between Windows and Linux

File transfer between Windows and Linux (1) Use W...