我的nodejs应用无法连接到MondoDB服务器。
我已经允许所有IP地址(0.0.0.0/0)进行连接。
const mongoose = require('mongoose');
const URL = '' //database url
mongoose.connect(URL, {useNewUrlParser: true}).then(db => {
console.log("Connected")
}).catch(err => {
console.log(err)
})
上面的代码抛出“ MongooseServerSelectionError:连接超时”错误
答案 0 :(得分:0)
您必须在猫鼬中提供类似这样的网址
const url ='mongodb:// localhost:27017 / myapp'
但是在此之前,请验证mongo是否在您的系统中运行。