Узел ECONNRESET tunnel-s sh и мангуст - PullRequest
0 голосов
/ 21 апреля 2020

Когда я запускаю Express, происходит сбой примерно через 5 минут.

Используйте эти зависимости.

  • express 4.17.1
  • мес goose 5.9.7
  • tunnel-s sh 4.1.4

подождать примерно через 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()
}

S SH config.

Host *
  ClientAliveInterval 8
  ServerAliveInterval 60
  TCPKeepAlive yes

1 Ответ

0 голосов
/ 01 мая 2020

решено

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