博客
关于我
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-connector-java各种版本下载地址
查看>>
mysql-EXPLAIN
查看>>
MySQL-Explain的详解
查看>>
mysql-group_concat
查看>>
MySQL-redo日志
查看>>
MySQL-【1】配置
查看>>
MySQL-【4】基本操作
查看>>
Mysql-丢失更新
查看>>
Mysql-事务阻塞
查看>>
Mysql-存储引擎
查看>>
mysql-开启慢查询&所有操作记录日志
查看>>
MySQL-数据目录
查看>>
MySQL-数据页的结构
查看>>
MySQL-架构篇
查看>>
MySQL-索引的分类(聚簇索引、二级索引、联合索引)
查看>>
Mysql-触发器及创建触发器失败原因
查看>>
MySQL-连接
查看>>
mysql-递归查询(二)
查看>>
MySQL5.1安装
查看>>
mysql5.5和5.6版本间的坑
查看>>