博客
关于我
spring cloud Eureka 的HA 高可用的实现
阅读量:389 次
发布时间:2019-03-05

本文共 1508 字,大约阅读时间需要 5 分钟。

新建一个项目:ms-eureka-ha-center

1.pom文件:

org.springframework.cloud
spring-cloud-starter-eureka-server

2.启动类:

package com.ljf.weifuwu.springcloud.ha.eureka;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;/** * Hello world! * */@SpringBootApplication@EnableEurekaServerpublic class EurekaHaApp{    public static void main( String[] args )    {        SpringApplication.run(EurekaHaApp.class,args);        System.out.println( "EurekaHaApp 高可用启动成功了!!!" );    }}

3.resources配置文件:

 

1.application.yml做为一个公共文件:

spring:  application:    name: ms-eureka-ha-center  profiles:    active: node1

2.application-node1.yml文件:

server:  port: 2001eureka:  instance:    hostname: node1  client:    serviceUrl:      defaultZone: http://node2:2002/eureka/,http://node3:2003/eureka/

3.application-node2.yml文件:

server:  port: 2002eureka:  instance:    hostname: node2  client:    serviceUrl:      defaultZone: http://node1:2001/eureka/,http://node3:2003/eureka/

4.application-node3.yml文件:

server:  port: 2003eureka:  instance:    hostname: node3  client:    serviceUrl:      defaultZone: http://node1:2001/eureka/,http://node2:2002/eureka/

3.不同端口的启动:

5.ip和节点名的映射:C:\Windows\System32\drivers\etc  修改host文件

6.启动访问:EurekaHaApp-node1、EurekaHaApp-node2、EurekaHaApp-node3 逐个启动,前面两个启动过程中可能会报错,可以忽略。

访问node1:

访问node2:

node3:

转载地址:http://pouzz.baihongyu.com/

你可能感兴趣的文章
MySQL CRUD 数据表基础操作实战
查看>>
multisim变压器反馈式_穿过隔离栅供电:认识隔离式直流/ 直流偏置电源
查看>>
mysql csv import meets charset
查看>>
multivariate_normal TypeError: ufunc ‘add‘ output (typecode ‘O‘) could not be coerced to provided……
查看>>
MySQL DBA 数据库优化策略
查看>>
multi_index_container
查看>>
MySQL DBA 进阶知识详解
查看>>
Mura CMS processAsyncObject SQL注入漏洞复现(CVE-2024-32640)
查看>>
Mysql DBA 高级运维学习之路-DQL语句之select知识讲解
查看>>
mysql deadlock found when trying to get lock暴力解决
查看>>
MuseTalk如何生成高质量视频(使用技巧)
查看>>
mutiplemap 总结
查看>>
MySQL DELETE 表别名问题
查看>>
MySQL Error Handling in Stored Procedures---转载
查看>>
MVC 区域功能
查看>>
MySQL FEDERATED 提示
查看>>
mysql generic安装_MySQL 5.6 Generic Binary安装与配置_MySQL
查看>>
Mysql group by
查看>>
MySQL I 有福啦,窗口函数大大提高了取数的效率!
查看>>
mysql id自动增长 初始值 Mysql重置auto_increment初始值
查看>>