mongoexport command in local code example

Example: how to export mongodb database

Mongo Export/dump
mongodump --out  --db  --host  --authenticationDatabase admin --ssl --username  --password
Example:
mongodump --out ~/Desktop/mongoData/ --db newdata --host cluster0-shard-01-02.xyz.mongodb.net:27017  --authenticationDatabase admin --ssl --username abc --password xyz

Mongo Import/restore
mongorestore  --db  --host  --authenticationDatabase admin --ssl --username  --password
Example:
mongorestore ~/Desktop/mongobkup/ --host cluster0-shard-00-02.xyz.mongodb.net:27017  --authenticationDatabase admin --ssl --username abc --password xyz

Tags:

Misc Example