如果你想推動一些與節點JS的生活,Mongo DB &快速這是否足以作爲連接到Mongo DB的安全方式?MongoDB安全性,我錯過了什麼?
有人可以從安全的角度解釋這段代碼嗎?
===
教程簡單地使用的潤通...
var mongoClient = new MongoClient(new Server('localhost', 27017));
Mongos Documenation包括...
var MongoClient = require('mongodb').MongoClient;
// Connect to the db
MongoClient.connect("mongodb://localhost:27017/exampleDb", function(err, db) {
if(!err) {
console.log("We are connected");
}
});
===
守則基於Mongo文檔 - http://mongodb.github.io/node-mongodb-native/api-articles/nodekoarticle1.html#getting-that-connection-to-the-database
MongoDB的主要安全性是一個適當的防火牆專用環境。身份驗證可以添加,但許多初學者教程忽略它,以便立即啓動並運行。 http://docs.mongodb.org/manual/core/security/ – ceejayoz