PHP与mysql连接不稳定的有关问题,求解决方法

WBOY
Release: 2016-06-13 13:44:08
Original
909 people have browsed it

PHP与mysql连接不稳定的问题,求解决办法
程序执行时会时不时的出现Can't connect to MySQL server on '127.0.0.1' (10061)或者
Can't connect to MySQL server on '127.0.0.1' (10048)
这两个似乎都会出现,但刷新就会好
程序没有问题,连接也没有问题,但偶尔会报这两个错误,自己写的代码,下面这种形式的
$con = mysql_connect("localhost","mysql_user","mysql_pwd");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

先用的localhost,后来换成了127.0.0.1,一样没有解决问题

------解决方案--------------------
可能是mysql的连接数问题,修改mysql.ini配置
------解决方案--------------------
网站的访问量如何?
服务器的配置如何?
什么情况发生的?
用常见的PHP程序,做压力测试再试试。

初步怀疑是网络或服务器不稳定造成的。
注意观察服务器CPU和内存的使用情况。
------解决方案--------------------
无非访问量大,或者网络问题,,看LZ这情况网络原因占大部分吧,,

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template