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 explanation of 6 ways of js inheritance
>>: Example of using JSX to create a Markup component style development (front-end componentization)
VMware Preparation CentOS preparation, here is Ce...
Disadvantages of Tables 1. Table takes up more byt...
Table of contents Overview How to achieve it Spec...
> Deploy MySQL 5.7 cluster master & slave ...
Table of contents Preface 1. The process of using...
There are significant differences between centos7...
question CSS fixed positioning position:fixed is ...
Preface In a common business scenario, we need to...
Table of contents 1.Vue.js features: 2.Observer.j...
Here are 30 best practices for HTML beginners. 1....
Original address: https://blog.csdn.net/m0_465798...
Table of contents 1. Background 2. Slow query cau...
Table partitioning is different from database par...
File transfer between Windows and Linux (1) Use W...
1. Requirements description For a certain element...