Answers for "mongo restore in server"

Go
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

mongo restore collections

mongorestore --port 27017 --db restoredTest /mydata/restoredata/test --drop
Posted by: Guest on September-09-2020

Browse Popular Code Answers by Language