Skip to content

Instantly share code, notes, and snippets.

@aNd1coder
Last active December 29, 2015 09:43
Show Gist options
  • Save aNd1coder/9a738504adc27b2676fe to your computer and use it in GitHub Desktop.
Save aNd1coder/9a738504adc27b2676fe to your computer and use it in GitHub Desktop.
Mongodb export & import data
#export
mongoexport -d <database> -c <collection> --type=json -f <field1>,<field2> -o </path/to/collection.json>
#import
mongoimport -d <database> -c <collection> --type=json -u <username> -p <password> --headerline --file </path/to/collection.json>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment