Eureka系列---【Eureka如何实现高可用?】

Eureka的高可用解决方案

一、双机部署

 

 分析:

1.Eureka的server端相互注册,自动相互同步应用信息;

2.Eureka的client端注册到任意一个上面即可,但为了保险起见,我们常同时注册到两个上面,来防止client注册到server1后,server1挂掉,client重启后注册不上;

server1的配置文件:

eureka:
    client:
        service-url:
            defaultZone: http://localhost:8762/eureka
     register-with-eureka: false

server2的配置文件:

eureka:
    client:
        service-url:
            defaultZone: http://localhost:8761/eureka
     register-with-eureka: false

client的配置文件:

eureka:
    client:
        service-url:
            defaultZone: http://localhost:8761/eureka,http://localhost:8762/eureka

二、多机部署

 

 

 分析:

1.server端两两相互注册;

2.client端同时注册到三个上面;

 

server1的配置文件:

eureka:
    client:
        service-url:
            defaultZone: http://localhost:8762/eureka,http://localhost:8763/eureka
     register-with-eureka: false

server2的配置文件:

eureka:
    client:
        service-url:
            defaultZone: http://localhost:8761/eureka,http://localhost:8763/eureka
     register-with-eureka: false

 

server3的配置文件:

 

eureka:
    client:
        service-url:
            defaultZone: http://localhost:8761/eureka,http://localhost:8762/eureka
     register-with-eureka: false

client的配置文件:

eureka:
    client:
        service-url:
            defaultZone: http://localhost:8761/eureka,http://localhost:8762/eureka,http://localhost:8763/eureka

posted on   少年攻城狮  阅读(897)  评论(0编辑  收藏  举报

编辑推荐:
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 互联网不景气了那就玩玩嵌入式吧,用纯.NET开发并制作一个智能桌面机器人(三):用.NET IoT库
· 【非技术】说说2024年我都干了些啥
< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

导航

统计

点击右上角即可分享
微信分享提示