Skip to content

Instantly share code, notes, and snippets.

@imsarvesh
Created February 2, 2020 22:41
Show Gist options
  • Save imsarvesh/7aed0e21e28d36428e0a75558e4ec9b4 to your computer and use it in GitHub Desktop.
Save imsarvesh/7aed0e21e28d36428e0a75558e4ec9b4 to your computer and use it in GitHub Desktop.
MLab Mongo Backup and Restore Locally
mongodump -h <subdomain>.mlab.com:25372 -u <username> -p <password> --authenticationDatabase <dbname> -d <backup-folder-name> -o ~/Desktop/
&&
mongorestore --db <dbname> ~/Desktop/<backup-folder-name>/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment