Last active
May 29, 2017 09:16
-
-
Save toan2406/82bf9b3f13cad54429bc65a3103c7727 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Backup and restore to local | |
$ mongodump --host localhost --port 27017 --db db-name -u XXX -p YYY --out db-backup | |
$ zip -r db-backup.zip db-backup | |
$ scp -i keys/key.pem ubuntu@ip:app/db-backup.zip ~/Downloads | |
$ mongorestore --db db-name --drop db-backup/db-name | |
// Dump from mongo cloud | |
$ mongod --dbpath [db-path] --replSet [replset-name] | |
$ mongo | |
> rs.initiate({ _id: "db_name", members: [{ _id: 1, host: "localhost:27017" }] }) | |
> exit | |
$ mongodump ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment