自学内容网 自学内容网

CentOS 9 Stream 上安装 Nginx

CentOS 9 Stream 上安装 Nginx

在 CentOS 9 Stream 上安装 Nginx 的步骤如下:

  1. 更新系统包

    sudo dnf update -y
    
  2. 安装 Nginx
    CentOS 9 Stream 的默认仓库包含了 Nginx,使用以下命令可以直接安装:

    sudo dnf install -y nginx
    
  3. 启动 Nginx 服务
    安装完成后,启动 Nginx 服务并设置为开机自启动:

    sudo systemctl start nginx
    sudo systemctl enable nginx
    
  4. 检查 Nginx 状态
    确认 Nginx 已正常运行:

    sudo systemctl status nginx
    
  5. 设置防火墙规则
    如果启用了防火墙,允许 HTTP 和 HTTPS 流量通过:

    sudo firewall-cmd --permanent --add-service=http
    sudo firewall-cmd --permanent --add-service=https
    sudo firewall-cmd --reload
    
  6. 验证 Nginx 是否工作正常
    在浏览器中访问服务器的 IP 地址,查看 Nginx 的默认页面:

    http://your_server_ip
    

    如果看到 Nginx 欢迎页面,说明安装成功。

完成后,您可以在 /etc/nginx/nginx.conf 中配置 Nginx,或者在 /etc/nginx/conf.d/ 目录下添加新的配置文件。


原文地址:https://blog.csdn.net/qq_35995691/article/details/143564187

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!