Answers for "how to restore a mongodb dump"

0

mongodb dump and restore

mongodump --db ${DB_NAME} --gzip -o ${BACKUP_FILE_GZ}

mongorestore --gzip --db "${DB_NAME_RESTORE}" ${BACKUP_FILE_GZ}/${DB_NAME}
Posted by: Guest on April-15-2021
0

how to restore a mongodb dump with a new name

mongorestore -d newDbName dumpdir/db1
Posted by: Guest on June-13-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language