Mongoexport 导出文件?
Mongoexport exported files?
我是 mongodb 的新手。我刚刚使用命令 mongoexport 如下:
mongoexport -d databasename -c collectionname
操作在几分钟内完成(导出了大约 30 万个文档)但是我在任何地方都看不到任何文件。我已经检查了当前文件夹(因为我认为它作为 mongodump 运行)但它似乎也是空的。
我需要指定文件夹吗?导出的文件位于何处?
中所述
If you do not specify a file name, the mongoexport writes data to standard output (e.g. stdout).
您需要使用 --out
选项指定要写入导出的文件。
如果您使用 windows,请将 mongoDB 路径添加到您的环境变量并选择您的目录,例如:
以管理员身份打开cmd,
cd C:\Users\Test
之后运行:
mongoexport -u admin -p password--host hostname:port -d databasename -c collection --authenticationDatabase admin -o test.csv
您将在
中找到您的文件
C:\Users\Test
我是 mongodb 的新手。我刚刚使用命令 mongoexport 如下:
mongoexport -d databasename -c collectionname
操作在几分钟内完成(导出了大约 30 万个文档)但是我在任何地方都看不到任何文件。我已经检查了当前文件夹(因为我认为它作为 mongodump 运行)但它似乎也是空的。
我需要指定文件夹吗?导出的文件位于何处?
If you do not specify a file name, the mongoexport writes data to standard output (e.g. stdout).
您需要使用 --out
选项指定要写入导出的文件。
如果您使用 windows,请将 mongoDB 路径添加到您的环境变量并选择您的目录,例如: 以管理员身份打开cmd,
cd C:\Users\Test
之后运行:
mongoexport -u admin -p password--host hostname:port -d databasename -c collection --authenticationDatabase admin -o test.csv
您将在
中找到您的文件C:\Users\Test