在centOS上yum安装好lamp环境后,写了个index.php脚本,在centOS的火狐上可以访问,但在windows下通过Linux的IP来访问该文件,就访问不了。
原因一般是Linux的防火墙和SElinux服务导致的,项目开发阶段可以关闭防火墙和SElinux服务,解决问题。
1、命令iptables -F,清空防火墙规则。
命令chkconfig iptable off #设置开机不启动
2、命令vim /etc/sysconfig/selinux #找到SELINUX
修改为SELINUX=disabled
命令init 6重启Linux。