我正在尝试从我的node.js
应用程序连接MongoDb Atlas,但是超时,并给我报头中提到的错误。
我已经将我的IP添加到 IP白名单中。此外,我还添加了本地IP ,公共IP 和 0.0.0.0/0 所有这三个IP都帮不了我。
这是我要连接到MongoDb Atlas的代码:
mongoose.connect('mongodb+srv://<username>:<password>@<cluster>.mongodb.net/test?retryWrites=true&w=majority', {
useNewUrlParser: true,
useCreateIndex: true
}).then(function () {
console.log("Connected to DB");
}).catch(function (err) {
console.log("ERROR : " + err.message);
});