Eureka多机高可用

Posted linjiqin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Eureka多机高可用相关的知识,希望对你有一定的参考价值。

1、Eureka服务端集群配置文件

#多服务器HA
spring:
  application:
    name: mima-cloud-eureka-ha
management:
  security:
    enabled: false
---
#启动命令nohup java -jar mima-cloud-eureka-ha.jar --spring.profiles.active=peer1 &
server:
  port: 8762
spring:
  profiles: peer1
eureka:
  instance:
    hostname: localhost
    prefer-ip-address: true
    instance-id: ${spring.application.name}:${server.port}
  client:
    serviceUrl:
      defaultZone: http://10.1.22.27:8763/eureka/,http://10.1.22.28:8764/eureka/
---
#启动命令nohup java -jar mima-cloud-eureka-ha.jar --spring.profiles.active=peer2 &
server:
  port: 8763
spring:
  profiles: peer2
eureka:
  instance:
    hostname: localhost
    prefer-ip-address: true
    instance-id: ${spring.application.name}:${server.port}
  client:
    serviceUrl:
      defaultZone: http://10.1.22.26:8762/eureka/,http://10.1.22.28:8764/eureka/
---
#启动命令nohup java -jar mima-cloud-eureka-ha.jar --spring.profiles.active=peer3 &
server:
  port: 8764
spring:
  profiles: peer3
eureka:
  instance:
    hostname: localhost
    prefer-ip-address: true
    instance-id: ${spring.application.name}:${server.port}
  client:
    serviceUrl:
      defaultZone: http://10.1.22.26:8762/eureka/,http://10.1.22.27:8763/eureka/

 如何打包mima-cloud-eureka-ha.jar可执行文件,点击此处查看

2、Eureka客户端集群配置文件

debug: true
spring:
  application:
    name: mima-cloud-producer
server:
  port: 9906
eureka:
  instance:
    prefer-ip-address: true
    instance-id: ${spring.application.name}:${spring.cloud.client.ipAddress}:${server.port}
  client: 
    serviceUrl: 
      #如果需要使用主机名,则需要配置服务器的/etc/hosts文件
      defaultZone: http://10.1.22.26:8762/eureka/,http://10.1.22.27:8763/eureka/,http://10.1.22.28:8764/eureka/

 

以上是关于Eureka多机高可用的主要内容,如果未能解决你的问题,请参考以下文章

keepalived实现nginx负载均衡机高可用

VMWare虚拟机高可用性技术:HA 和 FT

谈谈注册中心 zookeeper 和 eureka 中的 CP和 AP

谈谈注册中心 zookeeper 和 eureka 中的 CP和 AP

Spring Cloud Ribbon---微服务调用和客户端负载均衡

SpringCloud学习心得—1.2—Eureka注册中心的密码认证高可用的设置