您的当前位置:首页There was a problem with the instance info replicator

There was a problem with the instance info replicator

来源:锐游网

前言

微服务启动报错

 2021-02-25 16:51:45,121 - There was a problem with the instance info replicator
com.netflix.discovery.shared.transport.TransportException: Cannot execute request on any known server
	at com.netflix.discovery.shared.transport.decorator.RetryableEurekaHttpClient.execute(RetryableEurekaHttpClient.java:112)
	at com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator.register(EurekaHttpClientDecorator.java:56)
	at com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator$1.execute(EurekaHttpClientDecorator.java:59)
	at 

原因

程序未找到eureka配置 或者你的这段配置有问题

解决

重新写这段配置

#注册中心
eureka:
  client:
    serviceUrl:
      defaultZone: http://127.0.0.1:8080/eureka/

因篇幅问题不能全部显示,请点此查看更多更全内容

Top