首页 > 解决方案 > 节点 ECONNRESET 隧道-ssh 和猫鼬

问题描述

当我启动 Express 时,它会在大约 5 分钟内崩溃。

使用此依赖项。

等待大约 5 分钟后,出现这样的错误。

[nodemon] starting `node bin/www`
events.js:187
      throw er; // Unhandled 'error' event
      ^

Error: read ECONNRESET
    at TCP.onStreamRead (internal/stream_base_commons.js:201:27)
Emitted 'error' event on Server instance at:
    at Client.emit (events.js:210:5)
    at Socket.<anonymous> (/Users/project/node_modules/tunnel-ssh/node_modules/ssh2/lib/client.js:294:10)
    at Socket.emit (events.js:210:5)
    at emitErrorNT (internal/streams/destroy.js:92:8)
    at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)
    at processTicksAndRejections (internal/process/task_queues.js:80:21) {
  errno: 'ECONNRESET',
  code: 'ECONNRESET',
  syscall: 'read',
  level: 'client-socket'
}
[nodemon] app crashed - waiting for file changes before starting...

数据库连接。

module.exports.A = async () => {
  this.ssh = await tunnel({
    keepAlive: true,
    host: HOST,
    username: USERNAME,
    privateKey: fs.readFileSync(KEY),
    dstHost: DST_Host,
    dstPort: DST_Port
  })

  mongoose.connect(URL, {
    useNewUrlParser: true,
    useUnifiedTopology: true,
    useCreateIndex: true
  })
}

module.exports.B = async () => {
  this.ssh.close()
}

SSH 配置。

Host *
  ClientAliveInterval 8
  ServerAliveInterval 60
  TCPKeepAlive yes

标签: node.jsmongodbexpressmongoosessh

解决方案


解决了

  mongoose.connect(URL, {
    useNewUrlParser: true,
    useUnifiedTopology: true,
    useCreateIndex: true,
    serverSelectionTimeoutMS: 30000, // Use this.
    socketTimeoutMS: 30000 // Use this.
  })

推荐阅读