How to export all collections in MongoDB?

前端 未结 28 1573
你的背包
你的背包 2020-11-29 14:32

I want to export all collections in MongoDB by the command:

mongoexport -d dbname -o Mongo.json

The result is:
No collection specifie

28条回答
  •  谎友^
    谎友^ (楼主)
    2020-11-29 14:46

    Here's what worked for me when restoring an exported database:

    mongorestore -d 0 ./0 --drop

    where ./contained the exported bson files. Note that the --drop will overwrite existing data.

提交回复
热议问题