与mongoDB的NodeJS连接错误

时间:2015-03-27 14:47:53

标签: node.js mongodb socket.io

我将socketIO应用程序(使用nodeJS制作)与我的mongoDB连接时遇到问题。 我尝试在远程服务器上连接,但它引发了我的错误

这是我的代码(mongoDB中没有设置用户/密码):

   var url = "mongodb://192.168.1.5:27017/DB"

   MongoClient.connect(url, function(err, db) {
           console.log("test")
           if (!err) {
                   console.log("test");
           }
           else {
                   console.dir(err)
           throw err
           }
   //  db.close();
   });

这是我启动服务器的时候,我试图在导航器中启动应用程序: 服务器在端口80监听:

{ [MongoError: connect ECONNREFUSED] name: 'MongoError', message: 'connect ECONNREFUSED' }
/root/fys-realtime/examples/chat/node_modules/mongodb/lib/server.js:228
        process.nextTick(function() { throw err; })
                                            ^
Error
    at Error.MongoError (/root/fys-realtime/examples/chat/node_modules/mongodb/node_modules/mongodb-core/lib/error.js:13:17)
    at Server.destroy (/root/fys-realtime/examples/chat/node_modules/mongodb/node_modules/mongodb-core/lib/topologies/server.js:629:47)
    at Server.close (/root/fys-realtime/examples/chat/node_modules/mongodb/lib/server.js:344:17)
    at Db.close (/root/fys-realtime/examples/chat/node_modules/mongodb/lib/db.js:267:19)
    at /root/fys-realtime/examples/chat/node_modules/mongodb/lib/db.js:196:12
    at null.<anonymous> (/root/fys-realtime/examples/chat/node_modules/mongodb/lib/server.js:226:9)
    at g (events.js:180:16)
    at emit (events.js:98:17)
    at null.<anonymous> (/root/fys-realtime/examples/chat/node_modules/mongodb/node_modules/mongodb-core/lib/topologies/server.js:238:68)
    at g (events.js:180:16)

4 个答案:

答案 0 :(得分:14)

对于以下几个错误,会返回此错误:

  • 服务器未运行
  • 您需要对用户进行身份验证
  • 此数据库不存在
  • mongodb端口不是默认端口

检查一下。 Normaly你的问题只是其中一个原因

答案 1 :(得分:7)

要使其工作,您必须在/etc/mongod.conf中进行更改

评论 bind_ip = 127.0.0.1 好像这一行没有评论它只听本地界面。

答案 2 :(得分:0)

其中一个解决方案是将127.0.0.1更改为公共IP或路由器在/ etc

中的mongodb配置文件中提供的任何内容

答案 3 :(得分:0)

ECONNREFUSED错误的原因很少。 检查站

  • 检查您的端口是否没有为任何其他进程提供服务。
  • 检查您的mongod是否正在运行。
  • 检查localHost是否使用您的ID正确配置。

了解更多内容,您可以看到this