Skip to content

Instantly share code, notes, and snippets.

View jaydave1412's full-sized avatar

Jay Dave jaydave1412

View GitHub Profile
@jaydave1412
jaydave1412 / instructions.md
Last active January 31, 2026 06:17
Mongodb backup and restore

How to restore mongodb data

To restore full mongodb database to a different name use

  • mongorestore --uri <mongo uri> --db=<database name> <restore dir>
  • Note:

    restore dir should go till bson files

To restore a specific collection

  • mongorestore --uri --db= --collection= /collectioname.bson