用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > mysql教程

Warning:mysql_connect() [function.mysql-connect]: [2002] 由于目标机器.

时间:2015-01-23  来源:西部数据  作者:西部数据

今天在测试一数据处理功能发现连接mysql时突然碰到Warning: mysql_connect() [function.mysql-connect]:[2002] 由于目标机器积极拒绝,无法连接提示了,下面我们一起来看问题解决方法.

错误代码如下:

  1. aabb Warning: mysql_connect() [function.mysql-connect]: [2002] 由于目标机器积极拒绝,无法连接.(trying to connect via tcp://localhost:3306) in X:test7.php on line 6 
  2.  
  3. Warning: mysql_connect() [function.mysql-connect]: 由于目标机器积极拒绝,无法连接。 in X:test7.php on line 6 
  4.  
  5.  
  6. Warning: mysql_select_db() [function.mysql-select-db]: [2002] 由于目标机器积极拒绝,无法连接。 (trying to connect via tcp://localhost:3306) in X:test7.php on line 7 
  7.  
  8. Warning: mysql_select_db() [function.mysql-select-db]: 由于目标机器积极拒绝,无法连接。 in X:test7.php on line 7 
  9.  
  10. Warning: mysql_select_db() [function.mysql-select-db]: A link to the server could not be established in X:test7.php on line 7 
  11.  
  12. Warning: mysql_query() [function.mysql-query]: [2002] 由于目标机器积极拒绝,无法连接。 (trying to connect via tcp://localhost:3306) in X:test7.php on line 8 
  13.  
  14. Warning: mysql_query() [function.mysql-query]: 由于目标机器积极拒绝,无法连接。 in X:test7.php on line 8 
  15.  
  16. Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in X:test7.php on line 8 
  17.  
  18. Warning: mysql_query() [function.mysql-query]: [2002] 由于目标机器积极拒绝,无法连接。 (trying to connect via tcp://localhost:3306) in X:test7.php on line 14 
  19.  
  20. Warning: mysql_query() [function.mysql-query]: 由于目标机器积极拒绝,无法连接。 in X:test7.php on line 14 
  21.  
  22. Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in X:test7.php on line 14 
  23.  
  24. Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in X:test7.php on line 15 
  25. Array ( ) 

程序代码很简单,代码如下:

  1. $sql = "Select * from v_xyp where systype=5 "
  2. $array = array(); 
  3. $rq = mysql_query( $sql ); 
  4. if( mysql_num_rows( $rq ) ) 
  5.  while$rs = mysql_fetch_array( $rq ) ) 
  6.  { 
  7.    
  8.   //$sql ="update v_xyp set b_body= '".str_replace("'",'',strip_tags(stripslashes($rs['U_love'])))."' where id=".$rs['id']; 
  9.   //mysql_query( $sql ) ;//or die(mysql_error()); 
  10.   //echo $rs['id'].'<br />'; 
  11.   $sqlb ="select * from v_xyp where systype=5 and  b_body='".str_replace("'",'',strip_tags(stripslashes($rs['U_love'])))."' and id<>".$rs['id']; 
  12.   $query = mysql_query( $sqlb ) ;//or die(mysql_error()); 
  13.   $num = mysql_num_rows( $query ); 
  14.   if$num )//开源代码phpfensi.com 
  15.   { 
  16.    echo '<font color="#0000FF">{'.$rs['title'].'}重复内容有{'.$num.'}条</font><br />'
  17.    while$rs1 = mysql_fetch_array( $query ) ) 
  18.    { 
  19.     echo  $rs1['title'].'<br />'
  20.    } 
  21.    echo '<hr />'
  22.   }/**/ 
  23.  } 
  24.  //echo '标题:<font color=red>'.$title.'</font>己处理过,自动跳过!'; 

解决办法:想来想去都没想到,后来在服务中看mysql状态结果自动挂了,mysql自动停了,这个可能与我数据处理量或算法有问题了,重启mysql就解决了.

来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
栏目更新
栏目热门