Skip to content

Instantly share code, notes, and snippets.

@dungdt88
Last active September 19, 2019 03:44
Show Gist options
  • Save dungdt88/5890134b9244ecee95a90eeb10a1cf60 to your computer and use it in GitHub Desktop.
Save dungdt88/5890134b9244ecee95a90eeb10a1cf60 to your computer and use it in GitHub Desktop.

mongodump

Dump a single collection

mongodump -h "mongodb0.example.com:27017" -d dbname -u user -p password -c collectionname -o path-to-output

Make a backup (dump all collections)

mongodump -h "mongodb0.example.com:27017" -d dbname -u user -p password  -o path-to-backup

Restore a backup

mongorestore -h "mongodb0.example.com:27017" -d dbname -u user -p password  path-to-backup
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment