MongoDB — Backup & Restore (mongodump & mongorestore)
Backup databases using mongodump and restore data using mongorestore and mongoimport.
1mongodump and mongorestore Commands
Backup & Restore CLI
# Backup entire database to directory
mongodump --uri="mongodb://localhost:27017/store_db" --out=/backups/
# Restore database backup
mongorestore --uri="mongodb://localhost:27017/store_db" /backups/store_db/