Detailed explanation of achieving high availability of eureka through docker and docker-compose

Detailed explanation of achieving high availability of eureka through docker and docker-compose

Recently, new projects have used springcloud and docker. I will not introduce these two technologies separately. Now I will share the solution of achieving high availability of eureka through docker and docker-compose.

1. Eureka server project directory structure:

Docker high availability

2. eureka configuration file configuration:

server:
 port: 8900

spring:
 application:
  name: eureka-server
 profiles:
  active: dev

management:
 security:
  enabled: false
 health:
  rabbit:
   enabled: false

---
spring:
 profiles: dev

eureka:
 client:
  serviceUrl:
   defaultZone: http://localhost:${server.port}/eureka/
  register-with-eureka: false
  fetch-registry: false
 instance:
  hostname: localhost
  prefer-ip-address: true

---
spring:
 profiles: test_ha_1

eureka:
 client:
  serviceUrl:
   defaultZone: http://eurekaserver2:${server.port}/eureka/
 instance:
  hostname: eurekaserver1
# prefer-ip-address: true If this configuration is true, it means that the IP is registered to eureka. If this is the case, the eureka server cannot discover Replicas through the server.
# Therefore, if you want to achieve high availability of eureka through Docker, it is best to use the default value (false) for this configuration
# It is not impossible to configure it to true and achieve high availability, but each eureka service needs to be mapped outside the Docker environment and know the IP.
---
spring:
 profiles: test_ha_2

eureka:
 client:
  serviceUrl:
   defaultZone: http://eurekaserver1:${server.port}/eureka/
 instance:
  hostname: eurekaserver2
# prefer-ip-address: true

3. Docker Maven plugin configuration:

 <build>
    <plugins>
      <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
      </plugin>
      <plugin>
        <groupId>com.spotify</groupId>
        <artifactId>docker-maven-plugin</artifactId>
        <version>0.4.13</version>
        <configuration>
          <imageName>${docker.image.prefix}/${project.artifactId}:${project.version}</imageName>
          <dockerDirectory>src/main/docker</dockerDirectory>
          <forceTags>true</forceTags>
          <resources>
            <resource>
              <targetPath>/</targetPath>
              <directory>${project.build.directory}</directory>
            </resource>
          </resources>
        </configuration>
        <!--<groupId>com.spotify</groupId>
        <artifactId>docker-maven-plugin</artifactId>
        <version>0.4.13</version>
        <configuration>
          <imageName>itmuch/${project.artifactId}:${project.version}</imageName>
          <forceTags>true</forceTags>
          <baseImage>java</baseImage>
          <entryPoint>["java", "-jar", "/${project.build.finalName}.jar"]</entryPoint>
          <resources>
            <resource>
              <targetPath>/</targetPath>
              <directory>${project.build.directory}</directory>
              <include>${project.build.finalName}.jar</include>
            </resource>
          </resources>
        </configuration>-->
      </plugin>
    </plugins>
  </build>

4. Docker file content:

FROM java:8

ADD eureka-server-1.0.0.jar eurekaserver.jar
ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-jar","/eurekaserver.jar"]

5. Generate the eureka server image:

Generate the eurekaserver image by executing the mvn clean package docker:build command as follows:

Docker high availability

6. Orchestration via docker-compose:

version: '2'
services:
 eurekaserver1:
  image: raynspace/eureka-server:1.0.0
  ports:
   - "7900:8900"
  environment:
   - spring.profiles.active=test_ha_1

 eurekaserver2:
  image: raynspace/eureka-server:1.0.0
  #hostname: eurekaserver2
  ports:
   - "7800:8900"
  environment:
   - spring.profiles.active=test_ha_2

7. Jump to the project directory and execute the docker-compose up command to automatically generate two containers for the eureka server:

Docker high availability

8. Since the eureka port has been mapped, access eureka locally through the port to check the eureka service status:

Docker high availability

As can be seen from the above figure, another eureka service can be seen in both registered-replicas and available-replicas. At this point, the eureka cluster is built.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • How to configure eureka in docker

<<:  MySQL 5.7.10 Installation Documentation Tutorial

>>:  How to allow remote connection in MySql

Recommend

How to install Linux online software gcc online

Linux online installation related commands: yum i...

A brief analysis of HTML space code

How much do you know about HTML? If you are learni...

HTML code text box limit input text box becomes gray limit text box input

Method 1: Set the readonly attribute to true. INPU...

How to build pptpd service in Alibaba Cloud Ubuntu 16.04

1. To build a PPTP VPN, you need to open port 172...

MySQL uses limit to implement paging example method

1. Basic implementation of limit In general, the ...

HTML Tutorial: Definition List

<br />Original text: http://andymao.com/andy...

Tutorial on installing Microsoft TrueType fonts on Ubuntu-based distributions

If you open some Microsoft documents with LibreOf...

Docker installs and runs the rabbitmq example code

Pull the image: [mall@VM_0_7_centos ~]$ sudo dock...

Implementation of mysql data type conversion

1. Problem There is a table as shown below, we ne...

How to use JavaScript strategy pattern to validate forms

Table of contents Overview Form validation withou...

Summary of related functions for Mysql query JSON results

The JSON format field is a new attribute added in...

A brief discussion on MySQL temporary tables and derived tables

About derived tables When the main query contains...

JavaScript Basics Series: Functions and Methods

Table of contents 1. The difference between funct...

Summary of some common techniques in front-end development

1. How to display the date on the right in the art...

Introduction to CSS style classification (basic knowledge)

Classification of CSS styles 1. Internal style --...