插件窝 干货文章 centos7怎么安装nginx

centos7怎么安装nginx

Nginx sudo systemctl bash 374    来源:    2025-04-03

在CentOS 7上安装Nginx的详细指南

方法一:使用EPEL仓库安装(推荐)

  1. 添加EPEL仓库

    sudo yum install epel-release
    
  2. 更新系统包

    sudo yum update
    
  3. 安装Nginx

    sudo yum install nginx
    
  4. 启动Nginx服务

    sudo systemctl start nginx
    
  5. 设置开机自启

    sudo systemctl enable nginx
    
  6. 验证安装: 打开浏览器访问服务器的IP地址,应该能看到Nginx欢迎页面。

方法二:从Nginx官方仓库安装(获取最新版本)

  1. 添加Nginx官方仓库

    sudo rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
    
  2. 安装Nginx

    sudo yum install nginx
    
  3. 启动并启用Nginx

    sudo systemctl start nginx
    sudo systemctl enable nginx
    

防火墙配置

如果启用了防火墙,需要允许HTTP(80)和HTTPS(443)流量:

sudo firewall-cmd --permanent --zone=public --add-service=http
sudo firewall-cmd --permanent --zone=public --add-service=https
sudo firewall-cmd --reload

验证Nginx运行状态

sudo systemctl status nginx

常用管理命令

  • 启动Nginx:sudo systemctl start nginx
  • 停止Nginx:sudo systemctl stop nginx
  • 重启Nginx:sudo systemctl restart nginx
  • 重新加载配置(不中断服务):sudo systemctl reload nginx
  • 查看Nginx版本:nginx -v
  • 查看详细版本和编译选项:nginx -V

配置文件位置

  • 主配置文件:/etc/nginx/nginx.conf
  • 默认服务器块配置:/etc/nginx/conf.d/default.conf
  • 网站根目录:/usr/share/nginx/html
  • 日志文件:
    • 访问日志:/var/log/nginx/access.log
    • 错误日志:/var/log/nginx/error.log

安装完成后,您可以根据需要修改配置文件来设置虚拟主机、SSL证书等高级配置。