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

标签 javascript mysql node.js rest

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

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 个请求。

最佳答案

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

关于javascript - Node.js - 服务器关闭了连接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19357539/

相关文章:

javascript - 将项目附加到获取的项目数组解析云代码

javascript - 如何实现Node.js的图片服务

node.js - 在单个 Azure 应用程序中使用 Express 后端来 React 应用程序(通过 create-react-app)?

node.js - 预编译模板对非 Node 站点有用吗?

c# - 确认代码隐藏中的函数

javascript - 在 Meteor.js 热代码重新加载上取消设置 session 变量

php - 在哪里可以找到 Charles Miller 的 "Persistent Login Cookie"解决方案的 PHP/MySQL 实现?

mysql - 如何使用 'greater than' 和 'group by' 创建连接?

php - 如何用 Flight_Name 代替 Flight_ID?

javascript - 我的按位逻辑有什么缺陷?