mongoimport -d mytest -c sight --file D:/Microsoft Edge/sight.txt 2023-05-26T14:19:19.709+0800 error validating settings: incompatible options: --file and positional argument(s)
时间: 2024-02-09 11:12:19 浏览: 131
CVE-2020-13957 Apache Solr 未授权上传.md
这个错误提示是因为你在 mongoimport 命令中同时使用了 `--file` 选项和位置参数,这两个选项是不兼容的。你需要选择其中一种方式来指定导入的数据文件。
如果你想使用 `--file` 选项,需要将文件路径作为选项的参数传递,如下所示:
```
mongoimport -d mytest -c sight --file D:/Microsoft Edge/sight.txt
```
如果你想使用位置参数,需要将文件路径作为最后一个参数传递,如下所示:
```
mongoimport -d mytest -c sight D:/Microsoft Edge/sight.txt
```
请注意,在使用位置参数时,你需要确保文件路径是最后一个参数,并且在其它选项之前。
阅读全文