linux关闭Nginx
时间: 2024-02-02 07:39:16 浏览: 152
Linux中安装Nginx以及启动、关闭和重启命令.pdf
要关闭 Nginx 服务器,可以使用以下命令:
1. 停止 Nginx 服务:
```
sudo systemctl stop nginx
```
2. 关闭 Nginx 服务,以便在启动时不会自动启动:
```
sudo systemctl disable nginx
```
如果需要重新启动 Nginx 服务器,可以使用以下命令:
```
sudo systemctl start nginx
```
或者,如果您想要在系统启动时自动启动 Nginx 服务器,可以使用以下命令:
```
sudo systemctl enable nginx
```
阅读全文