Stephane
Stephane

Reputation: 12800

Couchbase says: No valid node found to bootstrap from

What means this error message ?

com.couchbase.client.core.config.ConfigurationException: No valid node found to bootstrap from. Please check your network configuration.

From the source code:

https://github.com/couchbase/couchbase-jvm-core/blob/master/src/main/java/com/couchbase/client/core/message/cluster/SeedNodesRequest.java

it looks like my node host is found, but is not valid:

Upvotes: 0

Views: 1146

Answers (1)

NoSQLKnowHow
NoSQLKnowHow

Reputation: 4865

If memory serves, it means that the Couchbase SDK cannot connect to the cluster you have in your connect string in your connection object. It is trying to connect and get the cluster map to know the cluster topology, what services are available and where in the cluster they are.

In the future, please add your code you are using to your question so as to have people answer your question, but also benefit the community here.

Upvotes: 1

Related Questions