service nginx stop systemctl stop nginx
service nginx start systemctl start nginx
service nginx reload systemctl restart nginx
systemctl enable nginx
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!