centos7安装nginx
时间: 2023-07-03 21:06:03 浏览: 73
以下是 CentOS 7 上安装 Nginx 的步骤:
1. 确保系统已经更新到最新版本:
```
sudo yum update
```
2. 安装 EPEL 源:
```
sudo yum install epel-release
```
3. 安装 nginx:
```
sudo yum install nginx
```
4. 启动 nginx 服务:
```
sudo systemctl start nginx
```
5. 设置 nginx 开机自启动:
```
sudo systemctl enable nginx
```
6. 检查 nginx 服务是否正常运行:
```
sudo systemctl status nginx
```
如果服务正常运行,你应该会看到类似如下的输出:
```
● nginx.service - The nginx HTTP and reverse proxy server
Loaded: loaded (/usr/lib/systemd/system/nginx.service; enabled; vendor preset: disabled)
Active: active (running) since Fri 2020-06-12 10:55:50 UTC; 1 weeks 1 days ago
```
7. 配置防火墙以允许 HTTP 和 HTTPS 流量:
```
sudo firewall-cmd --permanent --add-service=http
sudo firewall-cmd --permanent --add-service=https
sudo firewall-cmd --reload
```
完成以上步骤后,Nginx 就已经成功安装并启动了。你可以使用浏览器访问服务器的 IP 地址或域名来验证 Nginx 是否正常工作。
阅读全文