码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS 配置httpd使局域网可以正常访问

时间:2014-07-11 00:35:02      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   strong   文件   

【转载请注明出处: 钱国正的专栏http://blog.csdn.net/qianguozheng/article/details/37611859

问题

在CentOS上安装apache,配置好服务器本机可以访问,但是外部局域网IP不能访问

解决方法:

 1.修改配置文件/etc/httpd/conf/httpd.conf

<Directory "/var/www/cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
</Directory>

 2.添加端口映射,这点是CentOS系统的安全特性,也是其适用于服务器的原因吧。

方法<1>:直接修改防火墙配置文件(/etc/sysconfig/iptables)
                -A INPUT -p tcp -m state --state NEW -m tcp --dport 8080 -j ACCEPT
                -A INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT

方法<2>:命令修改

               /sbin/iptables -I INPUT -p tcp --dport 3306 -jACCEPT


保存配置

/etc/rc.d/init.d/iptables save


重启服务

service iptables restart

或/etc/init.d/iptables restart


检查状态

/etc/init.d/iptables status



iptables开机自动启动:

开启: chkconfig iptables on 
关闭: chkconfig iptables off


iptables关闭服务:

开启: service iptables start 
关闭: service iptables stop

参考

【http://tieba.baidu.com/p/1303031263】

【http://www.server110.com/linux/201308/528.html】

【http://www.2cto.com/os/201205/132884.html】

【http://www.cnblogs.com/rockee/archive/2012/05/17/2506671.html】


【转载请注明出处: 钱国正的专栏http://blog.csdn.net/qianguozheng/article/details/37611859

CentOS 配置httpd使局域网可以正常访问,布布扣,bubuko.com

CentOS 配置httpd使局域网可以正常访问

标签:style   blog   http   color   strong   文件   

原文地址:http://blog.csdn.net/qianguozheng/article/details/37611859

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