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.
我遇到了关于 mongodb 中提供的 mongodump 功能的问题。当以下代码在 mongodb shell 上运行时,它没有响应,
Mongodump --db database1 --out path:
mongodump --db students --collection grades
这里的学生是数据库的名称,成绩是集合的名称。
运行此命令将在您当前的工作目录中创建一个名为 dump 的文件夹。将在转储文件夹中创建一个以您的数据库名称命名的文件夹,您将在其中获得一个 collection_name.bson 文件和 collection_name.metadata.json 文件。
PS:确保您在 mongo shell 之外运行此命令。