You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

373 B

Testing setup

Single Server

mongod --dbpath=./db

Replicaset

mongo --nodb var x = new ReplSetTest({"useHostName":"false", "nodes" : {node0 : {}, node1 : {}, node2 : {}}}) x.startSet(); var config = x.getReplSetConfig() x.initiate(config);

Mongos

var s = new ShardingTest( "auth1", 1 , 0 , 2 , {rs: true, noChunkSize : true});