Answers for "mongodb dump database"

0

import dump mongodb

mongorestore -d db_name /path/
mongorestore -d db_name -c collection_name /path/file.bson
Posted by: Guest on August-18-2020
1

how to import mongodb dump database

mongorestore -h host.com:port -d dbname_test -u username -p password dump/dbname/
Posted by: Guest on December-01-2021
0

dump database mongodb in windows

mongodump -d your_db_name -o destination_path
Posted by: Guest on November-13-2021
0

take db backup mongodb

mongodump --host=mongodb1.example.net --port=3017 --username=user --password="pass" --out=/opt/backup/mongodump-2013-10-24
Posted by: Guest on November-17-2020
-1

take db backup mongodb

mongodump --out=/data/backup/
Posted by: Guest on November-17-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language