php代碼很簡單:
代碼如下:
linux本機下使用php mysql.php 可以查看運行結果,但是 在我的windows浏覽器下報錯:
代碼如下:
原因:
代碼如下:
發現 httpd_can_network_connect --> off
解決方案:
原來是 SELINUX,所以我一般直接關閉SELINUX和 iptables ip6tables
代碼如下:
chkconfig --level 12345 ip6tables off
service iptables stop
service ip6tables stop
查看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