首页 > 代码库 > node.js 连接mongo副本集

node.js 连接mongo副本集

最近弄了下mongodb的副本集,今天测试了下node.js 调用副本集的脚本,测试通过。记录下来。

 

var MongoClient = require(‘mongodb‘).MongoClient;
// mongodb://user:password@server:port/dbname?replicaSet=replicaSetName 连接的完整格式,副本集不需要写出所有的服务器的列表,只写一部分也是可以使用的,但如果写入部分的服务器出问题了,是否会出现失败,待以后确认
var url = ‘mongodb://wayne:wayne@192.168.75.132:27018,192.168.75.132:27019/wayne_com?replicaSet=rs‘; 
MongoClient.connect(url, function (err, db) { 
    console.log(‘error‘, ‘db connect is ok‘);
    var collection = db.collection(‘test_list‘); 
    console.log(‘error‘, ‘collection is ok‘);
    collection.find({}).toArray(function (err, result) { 
        console.log(err, result);
    });
});

 

node.js 连接mongo副本集