如何将计算机上的文件添加到本地mongodb集合中

时间:2018-07-09 07:24:54

标签: mongodb

我的计算机上有一个文件夹,其中包含要添加到本地mongodb中的json和bson格式的文件列表。数据库的名称是sahaj_dev。 enter image description here

我必须将所有这些文件作为该数据库的集合添加到sahaj_dev数据库中。

我该怎么做。我不确定是否要使用mongoimport或mongostore。我是mongodb的新手。请帮助我使用要使用的命令。谢谢。 This is the image of the list of files on my computer

1 个答案:

答案 0 :(得分:0)

我找到了答案。我必须使用mongorestore命令。它的语法是

mongorestore -d <db_name> <location of the folder>

这将还原文件夹中的所有文件,并在本地mongoDB中为其创建相应的集合