我将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)
答案 0 :(得分:14)
对于以下几个错误,会返回此错误:
检查一下。 Normaly你的问题只是其中一个原因
答案 1 :(得分:7)
要使其工作,您必须在/etc/mongod.conf中进行更改
评论 bind_ip = 127.0.0.1 好像这一行没有评论它只听本地界面。
答案 2 :(得分:0)
其中一个解决方案是将127.0.0.1更改为公共IP或路由器在/ etc
中的mongodb配置文件中提供的任何内容答案 3 :(得分:0)
ECONNREFUSED错误的原因很少。 检查站
了解更多内容,您可以看到this