How to recover a dropped MongoDB database?

后端 未结 2 1414
自闭症患者
自闭症患者 2020-12-11 07:02

If somebody accidentally dropped a MongoDB database but executing db.dropDatabase(), how can he recover the database?

Dropping a database in MongoDB is simple, and t

2条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-11 07:34

    AFAIK most systems just mark the file as deleted, via a flag rather than actually overwriting it. It's possible to recover files with standard tools...

    http://www.cyberciti.biz/tips/linuxunix-recover-deleted-files.html

    These might be easier to work with

    http://extundelete.sourceforge.net/

    As pointed out no substitute for backups.

提交回复
热议问题