Consul

Basic use and working principles of the Consul registration center.

Prerequisites

Instructions

Add Dependencies

Starting from Dubbo 3, the Consul registration center adaptation is no longer embedded in Dubbo. It needs to be separately introduced with an independent module.

  1. <dependency>
  2. <groupId>org.apache.dubbo.extensions</groupId>
  3. <artifactId>dubbo-registry-consul</artifactId>
  4. <version>3.3.0</version>
  5. </dependency>

Basic Configuration

  1. <dubbo:registry address="redis://10.20.153.10:6379" />

or

  1. <dubbo:registry address="redis://10.20.153.10:6379?backup=10.20.153.11:6379,10.20.153.12:6379" />

or

  1. <dubbo:registry protocol="redis" address="10.20.153.10:6379" />

or

  1. <dubbo:registry protocol="redis" address="10.20.153.10:6379,10.20.153.11:6379,10.20.153.12:6379" />

Feedback

Was this page helpful?

Yes No

Last modified September 30, 2024: Update & Translate Overview Docs (#3040) (d37ebceaea7)