Hye everyone,我是mongodb的新手我使用link上的mongodump --db somedb --collection somecollection --out - | gzip > collectiondump.gz
转储我的一个集合现在当我尝试使用mongorestore恢复它时它给出错误不知道该做什么与文件。
请帮助我使用这种方式,因为给定链接中的答案得到了太多的支持
答案 0 :(得分:5)
您只需将gzip添加到restore命令:
mongorestore --gzip --db projectx userprofiles/
答案 1 :(得分:1)
好的,我首先得到了我的答案,我通过使用命令将我的gunzipped文件的扩展名转换为bson
gunzip -c userprofiles.gz > users.bson
之后我使用了mongorestore命令
mongorestore --db projectx userprofiles/
多数民众赞成