Skip to content

Instantly share code, notes, and snippets.

@NitnekB
Created February 3, 2022 13:37
Show Gist options
  • Select an option

  • Save NitnekB/ae5f46242c5e39e25f2d925e41cfe46b to your computer and use it in GitHub Desktop.

Select an option

Save NitnekB/ae5f46242c5e39e25f2d925e41cfe46b to your computer and use it in GitHub Desktop.
Mongo backup & restore
# Use this command to get a backup
mongodump -u <USER> -p <PASSWORD> --port=<PORT> --authenticationDatabase admin -d <DATABASE> -c <COLLECTION>
# Use this command to restore back up (removing the old one)
mongorestore --db <DATABASE> ./<COLLECTION>.bson --drop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment