Skip to content

Instantly share code, notes, and snippets.

@kurdin
Forked from nghuuphuoc/gist:7800147
Last active August 29, 2015 14:19
Show Gist options
  • Save kurdin/93676d72805745829a4e to your computer and use it in GitHub Desktop.
Save kurdin/93676d72805745829a4e to your computer and use it in GitHub Desktop.
// http://docs.mongodb.org/manual/tutorial/back-up-and-restore-with-mongodb-tools/
// Backup
$ mongodump -u {username} -p {password} --db {db} --out {output}
// Restore
$ env LC_ALL=en_US.UTF-8 mongorestore --port {port number} --dbpath {db path} {path to the backup}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment