如何使用Server实例指定mongodb用户名和密码?

时间:2012-12-26 19:53:16

标签: node.js mongodb

MongoClient文档显示了如何使用Server实例创建连接:

var Db = require('mongodb').Db,
    MongoClient = require('mongodb').MongoClient,
    Server = require('mongodb').Server;

// Set up the connection to the local db
var mongoclient = new MongoClient(new Server("localhost", 27017));

您如何为此指定用户名和密码?

2 个答案:

答案 0 :(得分:30)

有两种不同的方法可以做到这一点

#1

Documentation(注意文档中的示例使用Db对象)

// Your code from the question

// Listen for when the mongoclient is connected
mongoclient.open(function(err, mongoclient) {

  // Then select a database
  var db = mongoclient.db("exampledatabase");

  // Then you can authorize your self
  db.authenticate('username', 'password', function(err, result) {
    // On authorized result=true
    // Not authorized result=false

    // If authorized you can use the database in the db variable
  });
});

#2

Documentation MongoClient.connect
Documentation The URL
我喜欢的一种方式,因为它更小,更容易阅读。

// Just this code nothing more

var MongoClient = require('mongodb').MongoClient;
MongoClient.connect("mongodb://username:password@localhost:27017/exampledatabase", function(err, db) {
  // Now you can use the database in the db variable
});

答案 1 :(得分:2)

感谢Mattias的正确答案。

我想补充一点,有时你想从一个数据库获取凭据,而想要连接到另一个数据库。 在这种情况下,您仍然可以使用URL方式进行连接,只需将?authSource=参数添加到URL。

例如,假设您拥有数据库admin的管理员凭据,并希望连接到数据库mydb。您可以通过以下方式执行此操作:

const MongoClient = require('mongodb').MongoClient;

(async() => {

    const db = await MongoClient.connect('mongodb://adminUsername:adminPassword@localhost:27017/mydb?authSource=admin');

    // now you can use db:
    const collection = await db.collection('mycollection');
    const records = await collection.find().toArray();
    ...

})();

此外,如果您的密码包含特殊字符,您仍然可以使用以下URL方式:

    const dbUrl = `mongodb://adminUsername:${encodeURIComponent(adminPassword)}@localhost:27017/mydb?authSource=admin`;
    const db = await MongoClient.connect(dbUrl);

注意:在早期版本中,当使用{ uri_decode_auth: true }作为用户名或密码时,需要connect选项(作为encodeURIComponent方法的第二个参数),但是现在此选项已过时,它可以正常工作没有它就好了。