How to shut down/restart/start nginx

How to shut down/restart/start nginx

closure

service nginx stop

systemctl stop nginx

start up

service nginx start

systemctl start nginx

Restart

service nginx reload

systemctl restart nginx

Automatically run when the system starts

systemctl enable nginx

Disable automatic operation when the system starts

systemctl disable nginx

Knowledge point expansion:

First, start nginx using the configuration file.

Command: nginx -c /usr/local/nginx/conf/nginx.conf

Restart the service: service nginx restart

2. Quickly stop or shut down Nginx: nginx -s stop

3. Stop or shut down Nginx normally: nginx -s quit

4. Modify the configuration file and reload the command: nginx -s reload

This is the end of this article about how to shut down/restart/start nginx. For more information about how to shut down/restart/start nginx, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of basic operation commands such as starting and stopping Nginx under Windows
  • Configure Nginx+PHP basic operations under Windows (start, restart and exit)

<<:  Vue+js realizes video fade-in and fade-out effect

>>:  js to realize a simple puzzle game

Recommend

Detailed explanation of common methods of JavaScript arrays

Table of contents Common array methods pop() unsh...

HTML dynamically loads css styles and js scripts example

1. Dynamically loading scripts As the demand for ...

MySQL view principles and basic operation examples

This article uses examples to illustrate the prin...

9 Practical CSS Properties Web Front-end Developers Must Know

1. Rounded Corners Today's web designs are con...

Rules for registration form design

I finished reading "Patterns for Sign Up &...

JavaScript implements changing the color of a web page through a slider

Hello everyone, today when I was looking at the H...

VMware15/16 Detailed steps to unlock VMware and install MacOS

VMware version: VMware-workstation-full-16 VMware...

Solution to EF (Entity Framework) inserting or updating data errors

Error message: Store update, insert, or delete st...

Summary of several key points about mysql init_connect

The role of init_connect init_connect is usually ...

Command to view binlog file creation time in Linux

Table of contents background analyze method backg...

Vue large screen data display example

In order to efficiently meet requirements and avo...

TypeScript interface definition case tutorial

The role of the interface: Interface, in English:...