码迷,mamicode.com
首页 > Web开发 > 详细

centos6.8安装httpd后无法访问

时间:2017-07-18 17:24:36      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:enabled   centos   需要   config   并且   命令   80端口   perm   start   

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

重启

centos6.8安装httpd后无法访问

标签:enabled   centos   需要   config   并且   命令   80端口   perm   start   

原文地址:http://www.cnblogs.com/shione/p/7201542.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!