集群搭建步骤
1. 创建多个spirng boot项目
2. 引入eureka依赖
3. 配置节点
node 1:
server:
port: 8761
# 指定服务注册中心的地址
eureka:
client:
service-url:
defaultZone: http://localhost:8762/eureka,http://localhost:8763/eureka
node 2:
server:
port: 8762
# 指定服务注册中心的地址
eureka:
client:
service-url:
defaultZone: http://localhost:8761/eureka,http://localhost:8763/eureka
node 3:
server:
port: 8763
# 指定服务注册中心的地址
eureka:
client:
service-url:
defaultZone: http://localhost:8761/eureka,http://localhost:8762/eureka
4. 给每个启动类添加@EnableEurekaServer注解
5. 启动各个Eureka Server即可