CentOS 7 安装 Apache HTTP 服务器

2018-10-22  本文已影响3人  l蓝色梦幻
  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
上一篇下一篇

猜你喜欢

热点阅读