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

Posted

技术标签:

【中文标题】Node.js - 服务器关闭了连接?【英文标题】:Node.js - server closed the connection? 【发布时间】:2013-10-21 20:37:37 【问题描述】:

我在 Node.js 服务器上运行一个 Web 应用程序,我需要它一直在线,所以我一直在使用它。但这是我在一段时间后得到的:

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 而不是永远查看错误。 日志中没有可见的错误,我尝试用node-dev运行它。这是我看到的唯一错误消息。 让我们更多地了解您的应用,以便我们了解正在发生的事情。你让一个套接字对mysql打开?为什么?是远程数据库吗? 您是否没有连接到其他一些 tcp 服务器。它可能与您的数据库有关? nodejs mysql Error: Connection lost The server closed the connection的可能重复 【参考方案1】:

该错误与您的 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();

【讨论】:

抱歉回复晚了。我刚刚用你的答案替换了我的代码,我正在启动服务器。我们应该在明天知道它是否有效:) 干杯 成功了吗?另外,@hexacyanide,对为什么甚至需要这样做有任何想法吗?为什么MySql连接会时不时丢失? 我第一次遇到这个错误。经过几个月的正常运行时间后,MySQL 连接突然不可用。原来我安装了一个名为“无人值守升级”的包,它安排自动应用 MySQL 安全更新,导致 MySQL 服务器重新启动。

以上是关于Node.js - 服务器关闭了连接?的主要内容,如果未能解决你的问题,请参考以下文章

Node.js:socket.io 关闭客户端连接

node.js ssh2 => 如何关闭连接并处理 ECONNRESET 错误

在 Node.js HTTP 服务器上重用 TCP 连接

iOS 5 的 Websocket 连接立即关闭,我正在尝试连接到 node.js 服务器和 phonegap 应用程序

查找位置的最佳 node.js 模块? [关闭]

Nginx上游过早关闭连接,同时从上游形式Node js rocky proxy读取响应头