博客
关于我
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/

你可能感兴趣的文章
MUI框架里的ajax的三种方法
查看>>
MySQL 8.0 恢复孤立文件每表ibd文件
查看>>
Mysql 8.0 新特性
查看>>
MultCloud – 支持数据互传的网盘管理
查看>>
MySQL 8.0.23中复制架构从节点自动故障转移
查看>>
MySQL 8.0开始Group by不再排序
查看>>
mysql ansi nulls_SET ANSI_NULLS ON SET QUOTED_IDENTIFIER ON 什么意思
查看>>
multi swiper bug solution
查看>>
MySQL Binlog 日志监听与 Spring 集成实战
查看>>
MySQL binlog三种模式
查看>>
multi-angle cosine and sines
查看>>
Mysql Can't connect to MySQL server
查看>>
mysql case when 乱码_Mysql CASE WHEN 用法
查看>>
Multicast1
查看>>
mysql client library_MySQL数据库之zabbix3.x安装出现“configure: error: Not found mysqlclient library”的解决办法...
查看>>
MySQL Cluster 7.0.36 发布
查看>>
Multimodal Unsupervised Image-to-Image Translation多通道无监督图像翻译
查看>>
MySQL Cluster与MGR集群实战
查看>>
multipart/form-data与application/octet-stream的区别、application/x-www-form-urlencoded
查看>>
mysql cmake 报错,MySQL云服务器应用及cmake报错解决办法
查看>>