What does “too many positional options” mean when doing a mongoexport?

后端 未结 14 1664
暖寄归人
暖寄归人 2020-12-05 09:27

mongoexport -h db.mysite.com -u myUser -p myPass -c myCollection

But the response I get is:

ERROR: too many positional options

14条回答
  •  既然无缘
    2020-12-05 10:27

    In my case, I had to write the port separately from the server connection. This worked for me:

    mongoexport --host=HOST --port=PORT --db=DB --collection=COLLECTION --out=OUTPUT.json -u USER -p PASS

提交回复
热议问题