集羣搭建是在單節點基礎上作的html
單節點註冊中心搭建--> https://www.cnblogs.com/chenglc/p/9561295.htmlspring
在單節點的基礎上修改配置文件 bootstrap.ymlbootstrap
spring.application.name: registry-c1 server: port: 9001 eureka: instance: hostname: clc1 client: serviceUrl: defaultZone: http://clc2:9002/eureka/
再複製一個節點,app
spring.application.name: registry-c server: port: 9002 eureka: instance: hostname: clc2 client: serviceUrl: defaultZone: http://clc1:9001/eureka/
去掉原有的兩項配置fetch
#向本身註冊 eureka.client.register-with-eureka: false #拉取本身的節點信息 eureka.client.fetch-registry: false
分別啓動便可spa
同步原理:兩個節點並無作特殊的複製處理,是eureka的通性:30向註冊中心發送一次心跳。30秒拉取一次配置,從而實現清單同步,達到了信息同步的效果。code