centos 8 安装 Nginx
时间: 2023-07-24 22:32:48 浏览: 69
centos8 安装 nginx的详细教程(图文)
在 CentOS 8 中安装 Nginx 的步骤如下:
1. 使用 root 用户登录系统。
2. 更新系统软件包:
```
dnf update
```
3. 安装 Nginx:
```
dnf install nginx
```
4. 启动 Nginx:
```
systemctl start nginx
```
5. 设置 Nginx 开机自启动:
```
systemctl enable nginx
```
6. 确认 Nginx 是否已经启动:
```
systemctl status nginx
```
如果 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 Mon 2021-12-06 15:24:51 UTC; 5min ago
```
7. (可选)如果您的系统上有防火墙服务,需要开放 Nginx 的 HTTP 和 HTTPS 端口(分别为 80 和 443 端口):
```
firewall-cmd --permanent --add-service=http
firewall-cmd --permanent --add-service=https
firewall-cmd --reload
```
至此,Nginx 已经成功安装并启动。您可以通过访问服务器的 IP 地址或域名,来验证 Nginx 是否正常工作。默认情况下,Nginx 的主配置文件位于 `/etc/nginx/nginx.conf`。如果需要更改 Nginx 的配置,请修改该文件并重启 Nginx 服务。
阅读全文