码迷,mamicode.com
首页 > 其他好文 > 详细

腾讯云CentOS 7 上安装Nginx

时间:2018-03-08 02:44:29      阅读:703      评论:0      收藏:0      [点我收藏+]

标签:tutorials   mct   body   sudo   权限   man   火墙   http   start   

以下安装步骤需要root权限。

  1. 添加CentOS 7 EPEL 仓库

    sudo yum install epel-release
  2. 安装Nginx

    sudo yum install nginx
  3. 启动Nginx

    sudo systemctl start nginx
  4. 启动防火墙

    sudo systemctl start firewalld.service
  5. 允许HTTP和HTTPS传输

    sudo firewall-cmd --permanent --zone=public --add-service=http
    sudo firewall-cmd --permanent --zone=public --add-service=https
    sudo firewall-cmd --reload
  6. 在浏览器中输入服务器ip地址,看到类似 Welcome to nginx 字样,则表示安装成功

参考地址:How To Install Nginx on CentOS 7

腾讯云CentOS 7 上安装Nginx

标签:tutorials   mct   body   sudo   权限   man   火墙   http   start   

原文地址:https://www.cnblogs.com/james2018/p/8525687.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!