You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
603 B
JavaScript
32 lines
603 B
JavaScript
12 months ago
|
'use strict';
|
||
|
|
||
|
const Server = require('mongodb-topology-manager').Server;
|
||
|
const mongodb = require('mongodb');
|
||
|
|
||
|
run().catch(error => {
|
||
|
console.error(error);
|
||
|
process.exit(-1);
|
||
|
});
|
||
|
|
||
|
async function run() {
|
||
|
// Create new instance
|
||
|
const server = new Server('mongod', {
|
||
|
auth: null,
|
||
|
dbpath: '/data/db/27017'
|
||
|
});
|
||
|
|
||
|
// Purge the directory
|
||
|
await server.purge();
|
||
|
|
||
|
// Start process
|
||
|
await server.start();
|
||
|
|
||
|
const db = await mongodb.MongoClient.connect('mongodb://127.0.0.1:27017/admin');
|
||
|
|
||
|
await db.addUser('passwordIsTaco', 'taco', {
|
||
|
roles: ['dbOwner']
|
||
|
});
|
||
|
|
||
|
console.log('done');
|
||
|
}
|