Skip to content

Instantly share code, notes, and snippets.

@swateek
Last active December 16, 2020 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save swateek/894501254f1ef2e343446c9c28eaa2eb to your computer and use it in GitHub Desktop.
Save swateek/894501254f1ef2e343446c9c28eaa2eb to your computer and use it in GitHub Desktop.
Everything MongoDB related
# using mongodump
mkdir swateek
mongodump --db="stats" --out="./swateek" --gzip
cd swateek
tar cvzf ../db_backup.tar.gz *
# using mongorestore
tar -xvzf db_backup.tar.gz
mongorestore --gzip --db="stats" --noIndexRestore stats/
# Everything Mongo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment