Advertisement
Guest User

replicaset

a guest
May 5th, 2014
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. cd ~
  2. mkdir -p mongo-bdw
  3. cd mongo-bdw
  4. mkdir -p rs0-0 rs0-1 rs0-2
  5. mongod --port 27000 --dbpath ~/mongo-bdw/rs0-0 --replSet rs0 --smallfiles --oplogSize 128
  6. mongod --port 27001 --dbpath ~/mongo-bdw/rs0-1 --replSet rs0 --smallfiles --oplogSize 128
  7. mongod --port 27002 --dbpath ~/mongo-bdw/rs0-2 --replSet rs0 --smallfiles --oplogSize 128
  8.  
  9. #Abra o shell do mongodb
  10. rs.initiate()
  11. rs.add("<hostname:27001>")
  12. rs.add("<hostname:27002>")
  13. rs.status()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement