Import export Mongo

#export and import

mongoexport --username my_user_name --password 'passwordhere' --authenticationDatabase DATABASE_NAME --host 10.xx.xx.xx --port 27017 --db=MY_DB --collection=MY_COLLECTION_NAME  --out=/home/user/MY_COLLECTION_NAME.json

mongoimport  --username my_user_name --password 'passwordhere' --authenticationDatabase DATABASE_NAME --host 10.xx.xx.xx --port 27017 --db=MY_DB --collection=MY_COLLECTION_NAME  --file=/home/user/MY_COLLECTION_NAME.json



Last updated