Skip to content

Instantly share code, notes, and snippets.

@Erliz
Created February 16, 2016 12:10
Show Gist options
  • Save Erliz/d07bcec644034017c6b0 to your computer and use it in GitHub Desktop.
Save Erliz/d07bcec644034017c6b0 to your computer and use it in GitHub Desktop.
m101-hw6.5
mkdir -p data/rs1 data/rs2 data/rs3
mongod --replSet m101 --logpath "1.log" --dbpath data/rs1 --port 27017 --smallfiles --oplogSize 64 --fork
mongod --replSet m101 --logpath "2.log" --dbpath data/rs2 --port 27018 --smallfiles --oplogSize 64 --fork
mongod --replSet m101 --logpath "3.log" --dbpath data/rs3 --port 27019 --smallfiles --oplogSize 64 --fork
mongo --port 27017 << 'EOF'
config = { _id: "m101", members:[
{ _id : 0, host : "localhost:27017"},
{ _id : 1, host : "localhost:27018"},
{ _id : 2, host : "localhost:27019"} ]
};
rs.initiate(config);
rs.status()
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment