我已经在instruction之后安装了Mongodb。但是,它在Mongo
中只有usr/local/bin
当我尝试将json文件导入数据库时,显示错误消息:
> mongoimport --jsonArray --db hw4 --collection restaurants --file restaurants.json 2019-11-12T15:18:28.737-0600 E QUERY [js] uncaught exception: SyntaxError: unexpected token: identifier : @(shell):1:14
似乎没有安装mongoimport
。我该如何安装它,或者还有另一种导入数据的方法?
答案 0 :(得分:0)
命令附带的--jsonArray
选项可能会引起此问题,可能不是必需的。 Restaurants.json是什么样的?
答案 1 :(得分:-1)
mongoimport
应该从shell命令行运行,而不是从mongo
shell内部运行。
为确保正确安装MongoDB及其关联工具,请按照Install MongoDB Community Edition on macOS
中概述的过程进行操作。