2

大家好,我是 mongodb 的新手,当我尝试使用 mongorestore 恢复它时,我现在使用链接mongodump --db somedb --collection somecollection --out - | gzip > collectiondump.gz上给出的以下命令转储了我的一个集合,它给出了错误不知道如何处理文件。

请帮助我我使用这种方式,因为给定链接中的答案得到了太多的支持

错误图片

4

2 回答 2

11

您可以将 gzip 添加到 restore 命令中:

mongorestore --gzip --db projectx userprofiles/
于 2017-06-08T08:59:33.477 回答
3

好的,我首先得到了答案,我使用命令将我的 gunzipped 文件的扩展名转换为 bson

gunzip -c userprofiles.gz > users.bson

之后我使用了 mongorestore 命令

mongorestore --db projectx userprofiles/

而已

于 2016-05-06T17:33:42.033 回答