eureka 启动不起来解决办法

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

报com.sun.jersey.api.client.ClientHandlerException: java.net.ConnectException: Connection refused: connect

或者com.netflix.discovery.shared.transport.TransportException: Cannot execute request on any known server 错

解决办法 修改配置文件 registerWithEureka、fetchRegistry 为false

eureka:
  instance:
    hostname: localhost
  client:
    serviceUrl.defaultZone: http://localhost:8000/eureka/
    registerWithEureka: false
    fetchRegistry: false

如果配置文件也是这个,之前启动都可以,但是突然就不行了,我的就是这个问题。重启项目,重启电脑都没有解决,可以试下clean、重新打jar包,我是通过这种方式解决的。

 

转载于:https://my.oschina.net/u/3677751/blog/3029008

你可能感兴趣的:(eureka 启动不起来解决办法)