错误:getaddrinfo在nodejs中进行ENOTFOUND以获取调用

时间:2014-04-24 04:16:17

标签: node.js mongodb backbone.js express restify

我在节点上运行Web服务器,其代码如下所示

var restify = require('restify');

var server = restify.createServer();

var quotes = [
  { author : 'Audrey Hepburn', text : "Nothing is impossible, the word itself says 'I'm possible'!"},
  { author : 'Walt Disney', text : "You may not realize it when it happens, but a kick in the teeth may be the best thing in the world for you"},
  { author : 'Unknown', text : "Even the greatest was once a beginner. Don't be afraid to take that first step."},
  { author : 'Neale Donald Walsch', text : "You are afraid to die, and you're afraid to live. What a way to exist."}
];

server.get('/', function(req, res) {
  res.json(quotes);
});

server.get('/quote/random', function(req, res) {
  var id = Math.floor(Math.random() * quotes.length);
  var q = quotes[id];
  res.json(q);
});

server.get('/quote/:id', function(req, res) {
  if(quotes.length <= req.params.id || req.params.id < 0) {
    res.statusCode = 404;
    return res.send('Error 404: No quote found');
  }

  var q = quotes[req.params.id];
  res.json(q);
});

server.listen(process.env.PORT || 3011);

然后我想在以下代码中执行get请求

var https = require('http');

/**
 * HOW TO Make an HTTP Call - GET
 */
// options for GET
var optionsget = {
    host : 'http://localhost',
    port : 3010,
    path : '/quote/random', // the rest of the url with parameters if needed
    method : 'GET' // do GET
};

console.info('Options prepared:');
console.info(optionsget);
console.info('Do the GET call');

// do the GET request
var reqGet = https.request(optionsget, function(res) {
    console.log("statusCode: ", res.statusCode);
    // uncomment it for header details
//  console.log("headers: ", res.headers);


    res.on('data', function(d) {
        console.info('GET result:\n');
        process.stdout.write(d);
        console.info('\n\nCall completed');
    });

});

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

我刚刚从节点开始,我甚至不知道这是否正确。 我想测试express和restify的性能。我已经为我编写的服务器代码做了一个apache基准测试,发现矛盾的结果更好地解决了。所以我想通过调用远程服务然后再测试一些读写mongodb。上面的代码是我的起点。我收到了错误

{ [Error: getaddrinfo ENOTFOUND] code: 'ENOTFOUND', errno: 'ENOTFOUND', syscall: 'getaddrinfo' }

我至少在写作方向?我想要的那种测试的正确方法是什么?为什么我得到的结果比表达更快?任何人都可以指导我在node / express / backbone和mongodb中应用程序的最佳起点教程吗?

10 个答案:

答案 0 :(得分:81)

getaddrinfo ENOTFOUND表示客户端无法连接到指定地址。 请尝试指定不带http:

的主机
var optionsget = {
    host : 'localhost',
    port : 3010,
    path : '/quote/random', // the rest of the url with parameters if needed
    method : 'GET' // do GET
};

关于学习资源,如果你从http://www.nodebeginner.org/开始,然后通过一些好书来获得更深入的知识,你就不会出错 - 我建议Professional Node.js,但是那里&# 39;那里有许多人。

答案 1 :(得分:13)

对我来说这是因为在/ etc / hosts文件中没有添加主机名

答案 2 :(得分:11)

检查类似这样的主机文件

##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting.  Do not change this entry.
##
127.0.0.1   localhost
255.255.255.255 broadcasthost

答案 3 :(得分:6)

我无法解释原因,但在Windows 10上将{ur}参数从localhost改为127.0.0.1只能解决此问题。

答案 4 :(得分:2)

我也有同样的问题,我通过使用正确的代理修复它。 如果您使用代理网络,请仔细检查您的代理设置。

希望这会对你有帮助 -

答案 5 :(得分:0)

  

我在亚马逊服务器上遇到同样的问题我将代码更改为

var connection = mysql.createConnection({
    localAddress     : '35.160.300.66',
    user     : 'root',
    password : 'root',
    database : 'rootdb',
});

检查mysql节点模块 https://github.com/mysqljs/mysql

答案 6 :(得分:0)

当我尝试安装新的离子应用程序时,出现以下相同错误, 我尝试了许多资源,发现在用户环境和系统环境中犯的错误不必要地包含了PROXY值。 我删除了用户变量 http://host:port 代理

系统变量 http_proxy http://username:password@host:port```` 现在它可以正常工作了,没有麻烦。

[ERROR] Network connectivity error occurred, are you offline?

        If you are behind a firewall and need to configure proxy settings, see: https://ion.link/cli-proxy-docs

        Error: getaddrinfo ENOTFOUND host host:80

答案 7 :(得分:0)

挣扎了几个小时,买不起更多的东西。

不到3分钟对我有用的解决方案是:

npm install axios

代码的结尾更短:

const url = `${this.env.someMicroservice.address}/v1/my-end-point`;

const { data } = await axios.get<MyInterface[]>(url, {
  auth: {
    username: this.env.auth.user,
    password: this.env.auth.pass
  }
});

return data;

答案 8 :(得分:-1)

var http = require('http');

  var options = {     
      host: 'localhost',
      port: 80,
      path: '/broadcast'
    };

  var requestLoop = setInterval(function(){

      http.get (options, function (resp) {
        resp.on('data', function (d) {
          console.log ('data!', d.toString());
        });
        resp.on('end', function (d) {
           console.log ('Finished !');
        });
      }).on('error', function (e) {
          console.log ('error:', e);
      });
  }, 10000);

var dns = require('dns'), cache = {};
dns._lookup = dns.lookup;
dns.lookup = function(domain, family, done) {
    if (!done) {
        done = family;
        family = null;
    }

    var key = domain+family;
    if (key in cache) {
        var ip = cache[key],
            ipv = ip.indexOf('.') !== -1 ? 4 : 6;

        return process.nextTick(function() {
            done(null, ip, ipv);
        });
    }

    dns._lookup(domain, family, function(err, ip, ipv) {
        if (err) return done(err);
        cache[key] = ip;
        done(null, ip, ipv);
    });
};

// Works fine (100%)

答案 9 :(得分:-3)

我遇到了同样的问题,经过一些试验和错误后发现我的hosts文件自定义导致了问题。

我的localhost DNS被覆盖,因此简单的ping失败了:

$ ping http://localhost
# ping: cannot resolve http://localhost: Unknown host

解决了/private/etc/hosts文件的配置后,ping localhost成功运行,并且不再收到您所看到的错误:

# Fatal error: getaddrinfo ENOTFOUND