Node.js - 服务器关闭了连接?

7

我正在一个Node.js服务器上运行一个Web应用,需要它一直在线,所以我使用了forever。但是经过一段时间后,我遇到了以下问题:

Error: Connection lost: The server closed the connection.
    at Protocol.end (/home/me/private/app/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:910:16
    at process._tickCallback (node.js:415:13)
error: Forever detected script exited with code: 8
error: Forever restarting script for 3 time

我还有两台服务器已经连续运行了大约10天。我在所有服务器上设置了“keepalive”循环,每隔5分钟左右进行一次“select 1” mysql查询,但似乎没有任何作用。

您有什么想法吗?

编辑 1

我的其他服务器也出现了类似的错误,我认为是“连接超时”,所以我添加了这个函数:

function keepalive() {
    db.query('select 1', [], function(err, result) {
        if(err) return console.log(err);    
        console.log('Successful keepalive.');
    });
}

这解决了我其他两个服务器的问题。但是在我的主服务器上,我仍然会遇到上述错误。

以下是我启动主服务器的方式:

var https = require('https');
https.createServer(options, onRequest).listen(8000, 'mydomain.com');

我不确定您想看哪些代码。基本上,服务器是一个REST API,需要一直运行。它每分钟接收大约2-5个请求,有时可能会达到10个。


看起来你的应用程序脚本有一些错误。尝试运行 node app.js 而不是 forever 来查看错误。 - Sriharsha
日志中没有可见的错误,我尝试使用node-dev运行它。这是我看到的唯一错误消息。 - Nikolay Dyankov
让我们了解更多关于您的应用程序的信息,这样我们就可以理解发生了什么。您是否保持了与mysql的套接字连接?为什么?它是远程数据库吗? - Salvatorelab
你没有连接到其他的TCP服务器吗?这可能与你的数据库有关。 - Gaurav
1个回答

16

这个错误与您的HTTPS实例无关,而与您的MySQL连接有关。

数据库连接意外结束并未得到处理。要解决此问题,您可以使用手动重新连接的解决方案,或者使用自动处理重新连接的连接池。

以下是从node-mysql文档中摘取的手动重新连接示例。

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();

抱歉回复晚了。我刚刚用你的答案替换了我的代码,正在启动服务器。明天我们应该就知道它是否有效了 :) 干杯 - Nikolay Dyankov
它起作用了吗?另外,@hexacyanide,你认为为什么需要这个?为什么MySql连接会不时地失去连接? - JAR.JAR.beans
2
我第一次遇到这个错误。在运行了数月后,MySQL连接突然不可用。原来我安装了一个名为“unattended-upgrades”的软件包,并安排自动应用MySQL安全更新,导致MySQL服务器重新启动。 - Chris Moore

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接