gpt4 book ai didi

mongodb - 无法使用 MongoClientSettings 作为 MongoClient 的参数连接到 MongoDb

转载 作者:行者123 更新时间:2023-12-02 06:33:10 24 4
gpt4 key购买 nike

我正在开发一个 C# MVC Web API,它使用 MongoDb 作为后端。我尝试使用

连接到我的 mongodb 数据库
MongoClient mongoClient = new MongoClient(connectionString)

其中连接字符串的格式为:mongodb://Username:<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="95c5f4e6e6e2fae7f1d5fdfae6e1fbf4f8f0bbf0f4e6e1e0e6bbf6f9fae0f1f4e5e5bbf4efe0e7f0bbf6faf8" rel="noreferrer noopener nofollow">[email protected]</a>

Mongo db 托管在 Azure 中的虚拟机中。我能够连接到数据库并且一切正常。但我经常遇到异常:

"MongoDb.driver.MongoConnectionException".An exception occurred while receivinf a message from server--->System.IO.IOException:Unable to read data from the transport connection : A connection attempt failed because the connected party did not properly respond after a period of time,......"

经过一番研究,我了解到 Azure 正在终止空闲连接,我必须设置 MaxConnectionIdleTime .

为了设置 MaxConnectionIdleTime 我决定通过以下方式连接到 Mongodb

 var credential = MongoCredential.CreateCredential("dbname", "UserName", "Password");

var settings = new MongoClientSettings
{
Credentials = new[] { credential },
Server = new MongoServerAddress("HostName", 27017),
MaxConnectionIdleTime = new TimeSpan(0, 3, 0)
};
MongoClient mongoClient = new MongoClient(settings);

在本例中,我使用之前连接的连接字符串中给出的相同用户名和密码组合。

尝试在此处连接时,我遇到了内部异常:

MongoDB.Driver.MongoAuthenticationException: "Unable to authenticate using sasl protocol mechanism SCRAM-SHA-1".

最佳答案

“MongoDb.driver.MongoConnectionException”。从服务器接收消息时发生异常--->System.IO.IOException:无法从传输连接读取数据:连接尝试失败,因为连接方未正确处理一段时间后回复,....

此异常背后的原因是当托管在 Azure 中时,Azure 尝试终止空闲连接,但 C# 驱动程序不知道这一点。驱动程序尝试在已终止的连接上执行查询,但不知道该连接不存在。

对我来说解决方案是在连接字符串中设置 maxIdleTimeMS=45000。

这样驱动程序就不会使用长时间空闲的连接。

这是适合我的连接字符串

connectionString="用户名: [email protected]/?connectTimeoutMS=30000&socketTimeoutMS=30000&waitQueueTimeoutMS=30000&maxIdleTimeMS=45000"

关于mongodb - 无法使用 MongoClientSettings 作为 MongoClient 的参数连接到 MongoDb,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40436754/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com