nodejs https错误:socket与localhost挂起

时间:2014-03-20 21:00:29

标签: javascript node.js sockets https localhost

我有一个针对localhost

上托管的端点的小代码片段
var https = require('https');

var options = {
  hostname: 'localhost',
  port: 443,
  path: '/',
  method: 'GET',
  agent: false
};

var req = https.request(options, function(res) {
  console.log("statusCode: ", res.statusCode);
  console.log("headers: ", res.headers);
  res.on('data', function(d) {
    process.stdout.write(d);
  });
});
req.end();

req.on('error', function(e) {
  console.error(e);
});

我总是得到错误:

{[错误:套接字挂断]代码:'ECONNRESET',sslError:undefined}

似乎端点甚至没有接收到请求,因为它没有捕获它并且没有发生超时。

如果我从浏览器尝试https:// localhost之类的请求,则会成功发送。

如果我只是将代码中的主机更改为encrypted.google.com,那么它也可以成功运行。

任何人都知道为什么会这样?

编辑:我也尝试添加浏览器发送的相同标头,例如accept,user-agent ..等,但仍无法正常工作

Edit2 :这是我记录时出现的堆栈跟踪:

Error: socket hang up
at SecurePair.error (tls.js:1013:23)
at EncryptedStream.CryptoStream._done (tls.js:705:22)
at CleartextStream.read [as _read] (tls.js:496:24)
at CleartextStream.Readable.read (_stream_readable.js:320:10)
at EncryptedStream.onCryptoStreamFinish (tls.js:301:47)
at EncryptedStream.g (events.js:180:16)
at EncryptedStream.EventEmitter.emit (events.js:117:20)
at finishMaybe (_stream_writable.js:360:12)
at endWritable (_stream_writable.js:367:3)
at EncryptedStream.Writable.end (_stream_writable.js:345:5)

1 个答案:

答案 0 :(得分:17)

ECONNRESET表示TCP连接意外关闭,即。在协议中期。

但你写的代码对我来说似乎没问题。

也许您遇到了这个问题https://github.com/joyent/node/issues/5360

TL; DR:您可以尝试使用最新的节点版本,并将secureOptions: constants.SSL_OP_NO_TLSv1_2添加到options

更新 SSLv3已损坏,https://access.redhat.com/articles/1232123;也许沟渠ISS?