To export JSON from MongoDB Collection
To export BSON from MongoDB Collection
To export some fields in csv from MongoDB Collection
To run javascript on MongoDB
To restore bson in MongoDB
mongoexport -h replicaSet/primaryHost,secondaryHost -u username -p pwd --db dbName -c collectionName --quiet > collectionExport.jsonTo export BSON from MongoDB Collection
mongodump -h replicaSet/primaryHost,secondaryHost -u username -p pwd --db dbName -c collectionName -o - > collectionDump.bsonTo export some fields in csv from MongoDB Collection
mongoexport --host primaryHost --db dbName --collection collectionName --fields 'field1,field2,field3' --out collection.csv --csv -u userName -pTo run javascript on MongoDB
mongo replicaSet/primaryHost,secondaryHost/dbName -u userName mongoScript.js -pTo restore bson in MongoDB
mongorestore --host primaryHost --db dbName --collection collectionName -u userName -p --drop collectionName.bson
Useful while we wrie backup scripts
ReplyDeleteGlad that it helped you..!!
Delete