0

社区。我很难使用 Reactive Mongo 客户端连接到 Cosmos Db。我可以使用 shell 和 NoSqlBooster 客户端连接到它,但使用 Reactive Mongo 失败。

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

任何帮助将不胜感激。谢谢。

4

1 回答 1

0

最后,我能够使用此配置使其工作:

mongodb://****:*****@****.documents.azure.com:10255/c360?ssl=true&authenticationMechanism=mongocr&sslAllowsInvalidCert=true&authenticationDatabase=admin


?ssl=true
&authenticationMechanism=mongocr
&sslAllowsInvalidCert=true
&authenticationDatabase=admin

我之前也尝试过这个配置组,但是,我想我可能在用户名和密码中泄漏了一些额外的东西。

于 2019-03-08T12:21:36.447 回答