Couchbase错误打开桶 - 无法引导

时间:2017-08-05 17:34:38

标签: c# couchbase

我正在尝试连接到我的couchbase服务器(Enterprise ver 4.6.2)并使用.Net SDK打开一个存储桶,代码非常简单,但仍无法正常工作:

        var cluster = new Cluster(new ClientConfiguration
        {
            Servers = new List<Uri> { new Uri("https://10.0.0.54:8091/") }
        });

        try
        {
            var bucket = cluster.OpenBucket("default");
        }
        catch (Exception ex)
        {
            Console.WriteLine("Error getting bucket.");
            Console.WriteLine(ex.Message);
        }

我得到的内部异常详情:

消息

Object reference not set to an instance of an object

栈跟踪

Couchbase.IO.Services.PooledIOService.CheckEnabledServerFeatures(IConnection connection)
   at Couchbase.IO.Services.PooledIOService..ctor(IConnectionPool connectionPool)
   at Couchbase.IO.IOServiceFactory.<>c__DisplayClass0_0.<GetFactory>b__0(IConnectionPool pool)
   at Couchbase.Configuration.Server.Providers.CarrierPublication.CarrierPublicationProvider.GetConfig(String bucketName, String username, String password)

我看到的主要例外是:

Could not bootstrap - check inner exceptions for details.

堆栈跟踪:

   at Couchbase.Core.ClusterController.CreateBucket(String bucketName, String username, String password, IAuthenticator authenticator)
   at Couchbase.Core.ClusterController.CreateBucket(String bucketName, IAuthenticator authenticator)
   at Couchbase.Cluster.OpenBucket(String bucketname)
   at Couchbase.Program.Main(String[] args)

知道问题是什么吗?

2 个答案:

答案 0 :(得分:1)

我在社区版上遇到了同样的问题。就我而言,在尝试访问它之前我没有创建默认存储桶。此外,如果您的服务器/集群或存储桶需要凭据,您还需要输入凭据。

答案 1 :(得分:0)

公开所有必需的端口 docker run -d -p 8091-8096:8091-8096 -p 11210:11210 -p 11211:11211沙发床