summaryrefslogtreecommitdiffstats
path: root/common/src/main/webapp/usageguide/appserver/node_modules/mongoose/node_modules/mongodb/boot_auth.js
blob: 95956c7a521a530cfe93323e09ea2673f20ddf3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
var ReplSetManager = require('mongodb-topology-manager').ReplSet,
  f = require('util').format;

var rsOptions = {
  server: {
    keyFile: __dirname + '/test/functional/data/keyfile.txt',
    auth: null,
    replSet: 'rs'
  },
  client: {
    replSet: 'rs'
  }
}

// Set up the nodes
var nodes = [{
  options: {
    bind_ip: 'localhost', port: 31000,
    dbpath: f('%s/../db/31000', __dirname),
  }
}, {
  options: {
    bind_ip: 'localhost', port: 31001,
    dbpath: f('%s/../db/31001', __dirname),
  }
}, {
  options: {
    bind_ip: 'localhost', port: 31002,
    dbpath: f('%s/../db/31002', __dirname),
  }
}]

// Merge in any node start up options
for(var i = 0; i < nodes.length; i++) {
  for(var name in rsOptions.server) {
    nodes[i].options[name] = rsOptions.server[name];
  }
}

// Create a manager
var replicasetManager = new ReplSetManager('mongod', nodes, rsOptions.client);
// Purge the set
replicasetManager.purge().then(function() {
  // Start the server
  replicasetManager.start().then(function() {
    process.exit(0);
  }).catch(function(e) {
    console.log("====== ")
    console.dir(e)
    // // console.dir(e);
  });
});