Mongoimport cmd不会通过

时间:2016-04-12 18:30:27

标签: windows mongodb

我正在尝试使用mongoimport将csv文件导入mongodb,但是windows cmd一直告诉我“错误验证设置:不兼容的选项: - file和位置参数”。我找不到问题,我的论点遵循MongoDB网站上的文档。

我正在使用mongodb 3.2.4,下面是我的cmd(以下所有内容在cmd时都在一行中):

mongoimport --host=geosocialdb.geography.uiowa.edu 
--ssl --sslCAFile sslCA.txt 
-u username -p "<pw>" 
--authenticationDatabase admin twitter-data 
-d twitter-data 
-c yellowCabM1 
--type csv 
--headerline 
--file yellow_tripdata_2015-01.csv

1 个答案:

答案 0 :(得分:0)

在Windows mongoimport上使用正斜杠/接受命令行参数标志。

e.g。在你的情况下它将是

mongoimport /host:geosocialdb.geography.uiowa.edu ...

请使用mongoimport --help

查看完整的旗帜列表