gpt4 book ai didi

mongodb - 如何将数据导入mongoDB

转载 作者:行者123 更新时间:2023-12-03 15:11:52 25 4
gpt4 key购买 nike

我正在尝试以 JSON 格式导入大型数据文件。我正在使用
mongoimport --db verbs --collection de --file "/Users/marcelbraasch/Downloads/de.json"
导入数据。这是正在经历的,但是,我收到以下异常:

Failed: (Unauthorized) not authorized on verbs to execute command { insert: "de", ordered: false, writeConcern: { w: "majority" }, $db: "verbs" }



我已经尝试过这样的组合
mongoimport -h localhost:27017 -u 'user' -p 'password' --db verbs --collection de --file "/Users/myname/Downloads/de.json"
但没有一个奏效。如果此信息很重要,我的 mongo 实例正在 docker 容器中运行。我需要做什么?

最佳答案

找到答案 here .这个缺失的关键字是 authenticationDatabase .对我有用的命令是:
mongoimport --db verbs --collection de --authenticationDatabase admin --username user --password password --drop --file /Users/myname/Downloads/de.json .

关于mongodb - 如何将数据导入mongoDB,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58066115/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com