eureka多實例,模擬多台機器


本文只有一個eureka server項目,運行在不同的端口,模擬兩台eureka服務。開發使用eclipse 4.8

先說pom.xml文件,如果出現問題,首先考慮springboot和其他包版本沖突

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.xing</groupId>
    <artifactId>springboot-eureka</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <packaging>jar</packaging>
    
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.4.0.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
 
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
    </properties>
 
     <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                 <version>Camden.SR3</version><!--Edgware.SR4  Finchley.RELEASE -->
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>
         
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-eureka-server</artifactId>
        </dependency>
        <!-- 健康檢查 -->
         <dependency>
           <groupId>org.springframework.boot</groupId>
           <artifactId>spring-boot-starter-actuator</artifactId>
       </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
     <!-- 倉庫管理 -->
    <repositories>
        <repository>
            <id>spring-milestones</id>
            <name>Spring Milestones</name>
            <url>https://repo.spring.io/milestone</url>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>
    </repositories>
   <!-- 指定profiles -->
     <profiles>
        <profile>
            <id>first</id>
            <activation>
                <!--  默認激活 -->
                <activeByDefault>true</activeByDefault>
            </activation>
            <properties>
                <spring.profiles.active>first</spring.profiles.active>
            </properties>
        </profile>
        <profile>
            <id>second</id>
            <properties>
                <spring.profiles.active>second</spring.profiles.active>
            </properties>
        </profile>
    </profiles>
</project>

因為是使用eclipse,想要多個實例好像只能采用多個yml或properties配置文件

application.ym如下:

spring:
  profiles:
    active: first

application-first.yml如下:

spring:
  application:
    name: xing-eurekaServer #指定服務名
  prifiles: first
server:
  port: 8090 #服務端口


eureka:
  client:
    registerWithEureka: true #是否將自己注冊到Eureka服務中,本身就是所有無需注冊
    fetchRegistry: true #是否從Eureka中獲取注冊信息
    serviceUrl: #Eureka客戶端與Eureka服務端進行交互的地址
      defaultZone: http://xing-eurekaServer:8091/eureka/
  instance:
    prefer-ip-address:  true  #將自己的ip地址注冊到Eureka服務中
    ip-address: 127.0.0.1
    instance-id: xing-eurekaServer:8090 #指定實例id
    hostname: 127.0.0.1
  server:
    enable-self-preservation: false #禁用自我保護模式
    eviction-interval-timer-in-ms: 60000 #清理間隔(單位毫秒,默認是60*1000)

application-second.yml如下:

spring:
  application:
    name: xing-eurekaServer #指定服務名
  prifiles: second
server:
  port: 8091 #服務端口


eureka:
  client:
    registerWithEureka: true #是否將自己注冊到Eureka服務中,本身就是所有無需注冊
    fetchRegistry: true #是否從Eureka中獲取注冊信息
serviceUrl: #Eureka客戶端與Eureka服務端進行交互的地址 defaultZone: http:
//xing-eurekaServer:8090/eureka/ instance: prefer-ip-address: true #將自己的ip地址注冊到Eureka服務中 ip-address: 127.0.0.1 instance-id: xing-eurekaServer:8091 #指定實例id hostname: 127.0.0.1 server: enable-self-preservation: false #禁用自我保護模式 eviction-interval-timer-in-ms: 60000 #清理間隔(單位毫秒,默認是60*1000)

其中后面兩個yml文件中的

serviceUrl: 
      defaultZone: http://xing-eurekaServer:8090/eureka/要使用xing-eurekaServer之類的域名,通過host映射到127.0.0.1,此處不講如何配置c盤的host文件,如果不采用域名的話可能剛啟動服務的時候是有兩個服務,但是后面刷新着就只剩一個服務了,此時查看后台日志會
發現eureka在cancle服務,並且頁面上的registered-replicas為空,推薦配置host。
 

 

從上面的兩個yml中可以看出來,first向second中注冊,second向first中注冊。這樣相互注冊,當你其他的服務想往這兩台eureka server服務器中注冊服務時,只需要向其中一台注冊,兩台eureka中都會有你注冊的服務,實現了高可用性。

啟動類SpringDemoApplication 如下:
package com.xing.springboot;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;


@SpringBootApplication
@EnableEurekaServer public class SpringDemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(SpringDemoApplication.class, args);
    }
}

啟動項目配置如下:

 

啟動之后訪問http://127.0.0.1:8090/可以看到如下頁面,頁面上部分的紅字是因為單機狀態,eureka給的警告,可以不用管

 

 

 

 

 源碼地址:https://github.com/OnlyXingxing/SpringCloud

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM