ubuntu 安装nginx
时间: 2023-09-28 10:03:43 浏览: 105
ubuntu下编译安装nginx
可以按照以下步骤在 Ubuntu 上安装 Nginx:
1. 打开终端,执行以下命令更新软件包列表:
```
sudo apt update
```
2. 安装 Nginx:
```
sudo apt install nginx
```
3. 安装完成后,启动 Nginx 服务:
```
sudo systemctl start nginx
```
4. 验证 Nginx 是否已启动:
```
sudo systemctl status nginx
```
如果看到输出信息中的 `Active:` 标签为 `active (running)`,则表示 Nginx 已经成功启动。
5. 如果您想要在系统启动时自动启动 Nginx,请使用以下命令将其添加到系统启动项中:
```
sudo systemctl enable nginx
```
之后,您可以通过访问 `http://localhost` 或您的服务器 IP 地址来测试 Nginx 是否可以正确地响应请求。
阅读全文