温馨提示×

nginx启动和关闭的方法是什么

小亿
102
2024-03-16 17:26:25
栏目: 编程语言

要启动和关闭nginx服务器,可以使用以下命令:

启动nginx服务器:

```

sudo systemctl start nginx

```

关闭nginx服务器:

```

sudo systemctl stop nginx

```

重新启动nginx服务器:

```

sudo systemctl restart nginx

```

查看nginx服务器的状态:

```

sudo systemctl status nginx

```

0