Export/Import via mongodump and mongorestore¶
Export :
mongodump --db=dbname --username="user1" --password="password1" --authenticationDatabase admin
Import :
mongorestore -d collection dump/collection/ --username user1 --password password1
Export :
mongodump --db=dbname --username="user1" --password="password1" --authenticationDatabase admin
Import :
mongorestore -d collection dump/collection/ --username user1 --password password1