美文网首页
CentOS 7 安装 Apache HTTP 服务器

CentOS 7 安装 Apache HTTP 服务器

作者: l蓝色梦幻 | 来源:发表于2018-10-22 15:46 被阅读3次
  1. 安装 Apache HTTP 服务器

    # yum install httpd
    
  2. 修改默认端口

    编辑 /etc/httpd/conf/httpd.conf 文件, 查找 LISTEN 80 修改默认端口

  3. 添加规则,使 Apache 可以通过防火墙。

    # firewall-cmd --add-service=http
    # firewall-cmd --permanent --add-port=3221/tcp
    # firewall-cmd --reload
    
  4. 重启 Apache 服务器, 使上述修改生效

    # systemctl restart httpd.service
    # 添加 Apache 服务到系统层使其随系统自动启动。
    # systemctl start httpd.service
    # systemctl enable httpd.service
    
  5. 验证 Apache 服务器

    links 127.0.0.1
    

    使用浏览器访问 ip 地址

    apache_httpd.png

相关文章

网友评论

      本文标题:CentOS 7 安装 Apache HTTP 服务器

      本文链接:https://www.haomeiwen.com/subject/tzegzftx.html