Eureka测试环境、开发环境服务宕机不踢掉处理

SpringCloud eureka 服务宕机踢掉演示DEMO

版本信息:<br>
springboot 1.5.9<br>
springcloud Dalston.RC1<br>

贴重点配置:<br>
server:<br>
```aidl
eureka:
  instance:
    hostname: localhost
    prefer-ip-address: true
    instance-id: ${spring.cloud.client.ipAddress}:${server.port}
  client:
    register-with-eureka: true
    fetch-registry: false
    service-url:
      defaultZone: http://172.16.80.194:8888/eureka/
  server:
    ###自我保护机制关闭
    enable-self-preservation: false
    ## 清理间隔(单位毫秒,默认是60*1000)
    eviction-interval-timer-in-ms: 2000
```
client:<br>
```aidl
eureka:
  instance:
    hostname: localhost
    instance-id: ${spring.cloud.client.ipAddress}:${server.port}
    prefer-ip-address: true
    ##设置心跳的周期间隔(默认90s)[如果10s没响应默认服务宕机]
    lease-expiration-duration-in-seconds: 10
    #设置心跳时间间隔(默认30s)[心跳时间2s]
    lease-renewal-interval-in-seconds: 2
  client:
    serviceUrl:
      defaultZone: http://172.16.80.194:8888/eureka/
    #开启健康检查(需要spring-boot-starter-actuator依赖)
    healthcheck:
      enable: true
```
重点提示:<br>
**生产环境不建议这么搞**

 [完整git地址](https://github.com/Xlinlin/eureka-server-demo)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值