MySQL的的NodeJS错误:连接丢失,服务器关闭了连接MySQL的的NodeJS错误:连接丢失,

2019-05-08 21:56发布

when I use node mysql, an error is appear between 12:00 to 2:00 that the TCP connection is shutdown by the server. This is the full message:

Error: Connection lost: The server closed the connection.
at Protocol.end (/opt/node-v0.10.20-linux-x64/IM/node_modules/mysql/lib/protocol/Protocol.js:73:13)
at Socket.onend (stream.js:79:10)
at Socket.EventEmitter.emit (events.js:117:20)
at _stream_readable.js:920:16
at process._tickCallback (node.js:415:13)

There is the solution. However, after I try by this way, the problem also appear. now I do not know how to do. Does anyone meet this problem?

Here is the way I wrote follow the solution:

    var handleKFDisconnect = function() {
    kfdb.on('error', function(err) {
        if (!err.fatal) {
            return;
        }
        if (err.code !== 'PROTOCOL_CONNECTION_LOST') {
            console.log("PROTOCOL_CONNECTION_LOST");
            throw err;
        }
        log.error("The database is error:" + err.stack);

        kfdb = mysql.createConnection(kf_config);

        console.log("kfid");

        console.log(kfdb);
        handleKFDisconnect();
    });
   };
   handleKFDisconnect();

Answer 1:

尝试使用此代码来处理服务器断开连接:

var db_config = {
  host: 'localhost',
    user: 'root',
    password: '',
    database: 'example'
};

var connection;

function handleDisconnect() {
  connection = mysql.createConnection(db_config); // Recreate the connection, since
                                                  // the old one cannot be reused.

  connection.connect(function(err) {              // The server is either down
    if(err) {                                     // or restarting (takes a while sometimes).
      console.log('error when connecting to db:', err);
      setTimeout(handleDisconnect, 2000); // We introduce a delay before attempting to reconnect,
    }                                     // to avoid a hot loop, and to allow our node script to
  });                                     // process asynchronous requests in the meantime.
                                          // If you're also serving http, display a 503 error.
  connection.on('error', function(err) {
    console.log('db error', err);
    if(err.code === 'PROTOCOL_CONNECTION_LOST') { // Connection to the MySQL server is usually
      handleDisconnect();                         // lost due to either server restart, or a
    } else {                                      // connnection idle timeout (the wait_timeout
      throw err;                                  // server variable configures this)
    }
  });
}

handleDisconnect();

在你的代码我失踪后,部分connection = mysql.createConnection(db_config);



Answer 2:

我不记得这个机制我原来的使用情况。 如今,我想不出任何有效的使用情况。

你的客户端应该能够当连接丢失检测,并允许您重新创建的连接。 如果重要的是使用相同的连接执行程序逻辑的一部分,然后使用事务。

TL;博士; 不要使用此方法。


务实的解决办法是强制MySQL保持连接:

setInterval(function () {
    db.query('SELECT 1');
}, 5000);

我喜欢这个解决方案,连接池和处理断开连接,因为它不要求组织你的方式代码那知道连接存在。 使查询每5秒确保连接将保持活着, PROTOCOL_CONNECTION_LOST不会发生。

此外,这种方法可以确保你保持相同的连接活着 ,而不是重新连接。 这个很重要。 试想,如果你的脚本依赖于会发生什么LAST_INSERT_ID()和MySQL连接已被重置而你没有注意到呢?

然而,这仅保证了连接的time out( wait_timeoutinteractive_timeout )不会发生。 它会失败,如预期,在所有其他情形。 因此,一定要处理其他错误。



Answer 3:

为了模拟被丢弃的连接尝试

connection.destroy();

这里更多信息: https://github.com/felixge/node-mysql/blob/master/Readme.md#terminating-connections



Answer 4:

创建和销毁在每个查询的连接,也许复杂的,我遇到了一些麻烦与服务器迁移时,我决定安装MariaDB的,而不是MySQL的。 出于某种原因,文件等中/ my.cnf中WAIT_TIMEOUT有10秒的缺省值的参数(它导致其持久性不能被实现)。 然后,将溶液在28800设置它,这是8个小时。 嗯,我希望帮助别人这个“güevonada” ......原谅我的英语不好。



文章来源: nodejs mysql Error: Connection lost The server closed the connection