Skip to content

Instantly share code, notes, and snippets.

@jondkelley
Last active May 30, 2018 14:18
Show Gist options
  • Save jondkelley/e6e5f97d7794521e781f37637484e021 to your computer and use it in GitHub Desktop.
Save jondkelley/e6e5f97d7794521e781f37637484e021 to your computer and use it in GitHub Desktop.
Mongo Cheat Sheet

Check current storage engine

db.serverStatus().storageEngine

Add new replicaSet members

config = { _id: "bogus-replica-set", members:[
          { _id : 0, host : "192.168.42.200:27017"},
          { _id : 1, host : "192.168.42.210:27017"}
          ]
         };
rs.initiate(config);

rs.status();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment