How to import data into mongoDB

前端 未结 2 1345
-上瘾入骨i
-上瘾入骨i 2021-01-20 15:36

I\'m trying to import a large data file in JSON format . I\'m using

mongoimport --db verbs --collection de --file \"/Users/marcelbraasch/Downloads/de.json\"

2条回答
  •  猫巷女王i
    2021-01-20 16:38

    Found the answer here. This missing keyword was authenticationDatabase. The command that worked for me was:

    mongoimport --db verbs --collection de --authenticationDatabase admin --username user --password password --drop --file /Users/myname/Downloads/de.json.

提交回复
热议问题