Home  >  Article  >  Operation and Maintenance  >  How to shut down, restart, and start nginx

How to shut down, restart, and start nginx

王林
王林forward
2023-05-12 12:40:068896browse

How to shut down, restart, and start nginx

Close

service nginx stop
systemctl stop nginx

Start

service nginx start
systemctl start nginx

Restart

service nginx reload
systemctl restart nginx

Automatically run when the system starts

systemctl enable nginx

Disable automatic running with system startup

systemctl disable nginx

Knowledge point expansion:

First use the configuration file to start nginx. Command:

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

Restart the service: service nginx restart

\1. Stop or shut down Nginx quickly: nginx -s stop

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

\3. Configuration file modification and reloading command: nginx -s reload

The above is the detailed content of How to shut down, restart, and start nginx. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:yisu.com. If there is any infringement, please contact admin@php.cn delete