流星未找到 Mongorestore 命令

Mongorestore command not found with meteor

好的,我收到了一堆 mongodb.bson.json)的文件,我想替换我当前的 meteor mongodb,我已经阅读了所有这些post关于它:

当 meteor 应用程序处于 运行

时,我结束了在我的终端中的写作

mongorestore -h 127.0.0.1:3001 --port 3001 -d meteor ~/Github/mongo/mongoDBRESTORE/admin/

但问题是终端输出是 not command found

有谁知道我做错了什么,正确的做法是什么?

正如@rgoomar 在评论中指出的那样,我需要下载 https://www.mongodb.org/downloads mongodb bin 文件然后我简单地 执行 ~/mongodb/bin/mongorestore -h 127.0.0.1:3001 -db meteor ~/Github/mongo/mongoDBRESTORE/admin

并且成功了!