Answers for "how to restore database mongodb from backup"

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

Code answers related to "how to restore database mongodb from backup"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language