-
安装 Apache HTTP 服务器
# yum install httpd
-
修改默认端口
编辑
/etc/httpd/conf/httpd.conf
文件, 查找LISTEN 80
修改默认端口 -
添加规则,使 Apache 可以通过防火墙。
# firewall-cmd --add-service=http # firewall-cmd --permanent --add-port=3221/tcp # firewall-cmd --reload
-
重启 Apache 服务器, 使上述修改生效
# systemctl restart httpd.service # 添加 Apache 服务到系统层使其随系统自动启动。 # systemctl start httpd.service # systemctl enable httpd.service
-
验证 Apache 服务器
links 127.0.0.1
使用浏览器访问 ip 地址
apache_httpd.png
网友评论