2014年4月15日 星期二

[mongodb] mongodump / mongorestore backup


使用 mongodb 提供的 tools 來 備份還原 mongodb file
mongodump 會直接 dump 出 bson的 file 
mongorestore 可以還原到 mongodb

  • dump bson 

mongodump -u user -p password --port port -h host -d dbname -c collection_name -o output_dir

ex
mongodump -u admin -p password --port 64631 -h 127.0.0.1 -d python -c post -o post


  • restore from bson file
mongorestore -u user -p password -h host:port -d dbname -c collection_name bsonfile

ex:
mongorestore -u admin -p password -h 127.0.0.1:40816 -d python -c post post2/python/post.bson

沒有留言:

張貼留言