ReactiveMongo|CosmosDb:如何使用 URI 使用 ReactiveMongo 连接到 Cosmos Db
ReactiveMongo|CosmosDb: How to connect to Cosmos Db using ReactiveMongo using URI
社区。我很难使用 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
非常感谢任何帮助。
谢谢
最后,我能够使用此配置使其工作:
mongodb://****:*****@****.documents.azure.com:10255/c360?ssl=true&authenticationMechanism=mongocr&sslAllowsInvalidCert=true&authenticationDatabase=admin
?ssl=true
&authenticationMechanism=mongocr
&sslAllowsInvalidCert=true
&authenticationDatabase=admin
我之前也尝试过这个配置组,但是,我想我可能在用户名和密码中泄露了一些额外的东西。
社区。我很难使用 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
非常感谢任何帮助。 谢谢
最后,我能够使用此配置使其工作:
mongodb://****:*****@****.documents.azure.com:10255/c360?ssl=true&authenticationMechanism=mongocr&sslAllowsInvalidCert=true&authenticationDatabase=admin
?ssl=true
&authenticationMechanism=mongocr
&sslAllowsInvalidCert=true
&authenticationDatabase=admin
我之前也尝试过这个配置组,但是,我想我可能在用户名和密码中泄露了一些额外的东西。