在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
php代码很简单: $server="127.0.0.1"; println("Begin"); $link = mysql_connect($server,"mysql","mysql"); if (!$link) { die('Could not connect: ' . mysql_error().mysql_errno()); } linux本机下使用php mysql.php 可以查看运行结果,但是 在我的windows浏览器下报错: Could not connect: Can't connect to MySQL server on '127.0.0.1' (13) 2003
发现 httpd_can_network_connect --> off
原来是 SELINUX,所以我一般直接关闭SELINUX和 iptables ip6tables # 关闭SELINUX chkconfig --level 12345 iptables off 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
参考资料: http://hi.baidu.com/zwfec/item/64ef5ed9bf1cb3feca0c397c
顺便再道一下: CentOS下 无法ping外网IP centos DNS 不能解析 装好centos时发现yum install vim时无法安装。原来DNS不能解析 配置vi /etc/resolv.conf 发现重启就没了。 最终解决 修改 vi /etc/sysconfig/network-scripts/ifcfg-Auto_eth0 添加 DNS1=8.8.8.8 DNS2=8.8.4.4 DNS3=192.168.1.1 重启网络 生成resolv.conf 配置 service network restart ------------- [root@localhost langxw]# ping 8.8.8.8 connect: 网络不可达 。原来没有下面的GATEWAY=192.168.1.1 TYPE=Ethernet BOOTPROTO=none IPADDR=192.168.1.121 PREFIX=24 GATEWAY=192.168.1.1 DEFROUTE=yes
|
2022-08-16
2022-11-06
2022-08-18
2022-08-15
2022-08-18
请发表评论