我试图在mongodb服务器以外的服务器上使用以下命令导入一些json文件到mongodb集合:
mongoimport --host IP --port 27017 -u myuser -p mypass --authenticationDatabase admin --db dbname --collection collection --drop --type json --file absolutejsonfilepath --jsonArray
抛出以下错误:
server returned error on SASL authentication step: BSON field 'saslContinue.mechanism' is an unknown field.
如果我在mongodb服务器上点击相同的命令,那么它就可以工作了。我已经检查了所有证件& &;其他细节。所有细节都是正确的。
mongodb版本:5.0.8
如果我使用-vvvv参数(用于详细输出)运行命令,那么我得到以下结果:
2022-05-12T12:29:22.261+0000 checking options
2022-05-12T12:29:22.262+0000 dumping with object check disabled
2022-05-12T12:29:22.262+0000 will listen for SIGTERM, SIGINT, and SIGKILL
2022-05-12T12:29:22.283+0000 got error from options parsing: error connecting to db server: server returned error on SASL authentication step: BSON field 'saslContinue.mechanism' is an unknown field.
2022-05-12T12:29:22.283+0000 Failed: error connecting to db server: server returned error on SASL authentication step: BSON field 'saslContinue.mechanism' is an unknown field.
花了几个小时后,我才知道这是主机服务器上的mongoimport版本问题。安装的mongoimport没有版本号&因此进入错误。
我使用以下命令安装mongodb工具版本100.5.1
sudo apt-get --purge remove mongodb-org
sudo apt purge mongodb*
sudo dpkg -i --force-all mongodb-database-tools-ubuntu2004-x86_64-100.5.1.deb