SQLSTATE [HY000]:一般错误:2006 MySQL服务器已经离开了运行cron job magento

时间:2013-08-28 10:59:13

标签: mysql magento cron observers

我正在Magento网站上工作,我收到此错误:

SQLSTATE[HY000]: General error: 2006 MySQL server has gone away on running 
cron job magento

我有时只会收到此错误。

<?php
class Namespace_Module_Model_Observer 
{
  public function importemails(Varien_Event_Observer $observer)
  {
    echo "Hi Dear";exit();

    /* connect to gmail */
    $hostname = '{imap.gmail.com:993/imap/ssl}INBOX';
    $username = 'myid@gmail.com';
    $password = 'mypass';

    /* try to connect */
    $inbox = imap_open($hostname,$username,$password) 
        or die('Cannot connect to Gmail: ' . imap_last_error());

    /* grab emails */
    $emails = imap_search($inbox,'ALL');

    /* if emails are returned, cycle through each... */
    if($emails) {

      /* begin output var */
      $output = '';

      /* put the newest emails on top */
      rsort($emails);

      /* for every email... */
      foreach($emails as $email_number) {

        /* get information specific to this email */
        $overview = imap_fetch_overview($inbox,$email_number,0);
        $message = imap_fetchbody($inbox,$email_number,2);

        /* output the email header information */
        $output.= 
          '<div class="toggler '.($overview[0]->seen ? 'read' : 'unread').'">';
        $output.= '<span class="subject">'.$overview[0]->subject.'</span> ';
        $output.= '<span class="from">'.$overview[0]->from.'</span>';
        $output.= '<span class="date">on '.$overview[0]->date.'</span>';
        $output.= '</div>';

        /* output the email body */
        $output.= '<div class="body">'.$message.'</div>';
      }
      echo $output;
    } 

    /* close the connection */
    imap_close($inbox);
  }  
}

此代码可以工作几个小时然后就会出现此错误。错误是什么意思?

6 个答案:

答案 0 :(得分:25)

如果您尝试在打开连接后的某个时间发送查询,则数据库连接会超时,从而导致此错误。通常的情况是:

  • 打开数据库连接
  • 从DB
  • 中获取一些数据
  • 做东西,例如发送电子邮件(花费的时间超过数据库连接超时)
  • 使用相同连接查询数据库
  • 错误:MySQL服务器已经消失

那么 - 解决方案是什么?您可以简单地增加超时,但这很难看,并且当您网站的流量增加时可能会导致问题。最好的解决方案是关闭数据库连接,然后重新打开它:

  • 打开数据库连接
  • 从DB
  • 中获取一些数据
  • 关闭数据库连接
  • 做东西,例如发送电子邮件(花费的时间超过数据库连接超时)
  • 打开新的数据库连接
  • 使用相同连接查询数据库
  • 关闭数据库连接

以下是更多信息: http://dev.mysql.com/doc/refman/5.0/en/gone-away.html

答案 1 :(得分:0)

如果你使用phpsh解释器出现这个错误。我可以用phpsh和一个新的shell来重现这个错误到doctrine manager。

SQLSTATE[HY000]: General error: 2006 MySQL server has gone away 

在phpsh解释器中使用此命令:

php> $result = $conn->query('select psetid from psetproblems')->fetchAll();

<强>解释

此错误是MySQL超时错误。要么在创建连接之间等待太长时间,然后实际使用它,要么您使用其中一个命令出错并且破坏了连接。最简单的解决方案是停止,重新启动所有内容,不要运行抛出错误的命令,并快速执行。它应该工作。

<强>解决方案

重新启动翻译。不要提交错误,并通过口译员更快地发出命令。

您可以增加PHP的MySQL连接的超时长度。然后,您可以在创建连接之间等待更长时间,然后再使用它。

答案 2 :(得分:0)

我没有任何超时问题。

我将一个fclose(STDERR)行从我的主文件移到了一个包含的文件中,这一切都开始了。

SQLSTATE [HY000]:常规错误:2006 MySQL服务器已经消失

我将线路移回原来的位置,问题就消失了。

基本上,从包含文件中关闭STDERR似乎会产生一些疯狂的反响。

答案 3 :(得分:0)

使用共享主机时,您还可以查看索引表大小。它可能需要很大的空间,因为你也可能会“mysql服务器消失”。

答案 4 :(得分:0)

之前我遇到过这个错误。对于我的情况,这是由于数据库大小太大,5年数据超过18gb。

唯一适用于我的解决方案是转储所有这些数据并创建一个新数据库。

答案 5 :(得分:0)

如果您有任何操作不能使用Magento DB超过20秒(我遇到了这样的wait_timeout = 20的共享主机),您必须关闭数据库连接。 Magento将在下次调用DB时创建新连接。

    Mage::getSingleton('core/resource')->getConnection('read')->closeConnection();