Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将 MONGO_URL 设置为 mongodb://localhost:27017/meteor 并让 MongoDB 作为服务运行。
在运行我的项目时,在我尝试运行流星重置之前,将数据存储到单独的 MongoDB 似乎是可以的。
我的假设是它试图删除其默认数据库。该错误抱怨 myproject.meteor\local 不为空,并指向 fs.js:456 转到 files.js:256 (rm_recursive) 等等。
知道什么以及如何解决这个问题吗?
$ meteor reset仅重置捆绑的 MongoDB。它不会重置外部 Mongo 数据库。
$ meteor reset
(我们应该在文档中更好地解释这一点。)
mongo在您的情况下,尝试直接(使用命令行 shell)连接到 Mongo 数据库并运行> db.dropDatabase()
mongo
> db.dropDatabase()