社区。我有一个很难连接到宇宙数据库使用反应性的Mongo客户端。我能够连接到它使用外壳和NoSqlBooster客户端,但失败的使用反应蒙戈。
Authentication Mechanism |-------| Result
**scram-sha1** Authentication failed, SaslFailed
**mongocr** Authentication failed尝试URI:
mongodb://****:*****@******.documents.azure.com:10255/c360?ssl=true&authenticationMechanism=scram-sha1&sslAllowsInvalidCert=true
mongodb://****:*****@******.documents.azure.com:10255/c360?ssl=true任何帮助都将不胜感激。谢谢。
发布于 2019-03-08 12:21:36
最后,我能够使用以下配置使其工作:
mongodb://****:*****@****.documents.azure.com:10255/c360?ssl=true&authenticationMechanism=mongocr&sslAllowsInvalidCert=true&authenticationDatabase=admin
?ssl=true
&authenticationMechanism=mongocr
&sslAllowsInvalidCert=true
&authenticationDatabase=admin我之前也尝试过这个配置组,但是,我想我可能在用户名和密码中溢出了一些额外的内容。
https://stackoverflow.com/questions/55038130
复制相似问题