在Nginx中,重新启动服务的常用命令如下:
sudo systemctl restart nginx
或
sudo service nginx restart
sudo nginx -s reload
(此命令会主进程重新加载配置,worker进程会完成当前请求后退出)
sudo systemctl stop nginx
sudo systemctl start nginx
sudo systemctl status nginx
您使用的是哪个Linux发行版?不同发行版可能会有细微的命令差异。