尝试从MongoDB中检索数据时获取“TimeoutException”

时间:2016-08-16 15:09:07

标签: c# mongodb authentication mongodb.driver

我正在使用C#连接MongoDB服务器,使用版本为2.2.24.26的官方MongoDB.Driver

我的代码如下所示:

internal BsonArray Find(string ConnectionString, string collection, string filter)
{
    Uri u = new Uri(ConnectionString);
    string database = u.LocalPath.Trim(new char[] { '/' });
    IMongoDatabase _db = new MongoClient(ConnectionString).GetDatabase(database);
    IMongoCollection<BsonDocument> col = _db.GetCollection<BsonDocument>(collection);
    return BsonArray.Create(col.Find(BsonDocument.Parse(filter)).ToList());
}

如果连接字符串类似于

,它就像魅力(它在不到0.5秒内完成)
mongodb://localhost:27017/my_db

只要我想使用身份验证,我就会遇到超时。

mongodb://user:password@localhost:27017/my_db

一直消耗的操作是“ToList()”。我的测试中的列表确实有136个条目。我错过了什么吗?

编辑:对不起,首先是错误的主题。我不知道一个完全不相关的问题的主题是如何在这里出现的......

1 个答案:

答案 0 :(得分:0)

我发现了问题。如果凭据无效,MongoDB似乎会返回TimeoutException。我不小心将我想要使用的用户添加到错误的数据库中,因此我无法使用它登录原始数据库。这个例外让我在一个完全错误的方向上搜索这个问题:/

使用错误的凭据时看起来很奇怪,但这只是我的意见。