Centos7安装Apache Http服务器无法访问如何解决
Posted ransom
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7安装Apache Http服务器无法访问如何解决相关的知识,希望对你有一定的参考价值。
1. 安装Apache组件
[[email protected] shell]# yum install httpd
2. 安装成功后,检测有无httpd进程
[[email protected] shell]# ps -e |grep httpd
3. 如没有,启用该服务
[[email protected] shell]# systemctl restart httpd.service
4. 使用浏览器访问本机IP地址,如果显示链接失败如下:
应该是防火墙相关设置问题导致.
5.关闭并禁用防火墙
[[email protected] shell]# systemctl stop firewalld.service #停止防火墙服务
[[email protected] Desktop]# systemctl disable firewalld.service #禁用防火墙开机启动服务
Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
Removed symlink /etc/systemd/system/basic.target.wants/firewalld.service.
Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
Removed symlink /etc/systemd/system/basic.target.wants/firewalld.service.
6.再次访问网站,能够成功登录
注意:如果你还是希望使用iptables来进行防火墙配置,记得一定要做下面设置:
[[email protected] Desktop]# yum install iptables-services
[[email protected] Desktop]# systemctl enable iptables
以上是关于Centos7安装Apache Http服务器无法访问如何解决的主要内容,如果未能解决你的问题,请参考以下文章
Linux学习--CentOS7 安装好MySQL及Apache后,宿主机无法打开网页
centos7安装Lnmp(Linux+Nginx+MySql+Php+phpMyAdmin+Apache)
centos7下安装apache服务器httpd的yum方式安装