CentOS 6.8安装httpd后无法访问

1.打开 httpd.conf

将里面的 #ServerName localhost:80 注释去掉

2.修改SELinux状态:

1)/usr/sbin/sestatus -v      ##如果SELinux status参数为enabled即为开启状态

SELinux status:                 enabled

2)getenforce                 ##也可以用这个命令检查

关闭SELinux:

1)临时关闭(不用重启机器):

setenforce 0                  ##设置SELinux 成为permissive模式

                              ##setenforce 1 设置SELinux 成为enforcing模式

2)修改配置文件需要重启机器:

修改/etc/selinux/config 文件

将SELINUX=enforcing改为SELINUX=disabled

3.iptable的命令,并且把tcp的80端口设置成允许任何IP都可以访问

iptables -I INPUT -p TCP --dport 80 -j ACCEPT 

修改状态

vim /etc/sysconfig/iptables

加-A INPUT -p tcp -m tcp --dport 80 -j ACCEPT

保存状态

/etc/init.d/iptables save

/etc/init.d/iptables restart

重启

猜你喜欢

转载自www.linuxidc.com/Linux/2017-07/145940.htm