Skip to content

Instantly share code, notes, and snippets.

@bernardbr
Last active August 8, 2021 16:49
Show Gist options
  • Save bernardbr/8320aeb49a7a10dcb9fd5ee3bdbc6226 to your computer and use it in GitHub Desktop.
Save bernardbr/8320aeb49a7a10dcb9fd5ee3bdbc6226 to your computer and use it in GitHub Desktop.
Backup & Restore MongoDb

Restore from gz file

mongorestore --gzip --archive=<filename>.gz --db "<database_name>" --host=localhost:27017 --username=<user_name> --password=<password> --authenticationDatabase=admin

Backup into gz file

mongodump --gzip --archive=<filename>.gz --db "<database_name>" --host=localhost:27017 --username=<user_name> --password=<password> --authenticationDatabase=admin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment