Answers for "restore dump db mongodb"

1

Create And Restore MongoDB Backups

# Backup
mongodump --authenticationDatabase admin --username root --password PASSWORD -d DATABASE_NAME -h localhost

# Restore
mongorestore --authenticationDatabase admin --username root --password PASSWORD PATH_TO_BACKUP_FILE
Posted by: Guest on October-19-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