was unable to refresh its cache! status = Cannot execute request on any known server

出现这种错误是因为:

Eureka服务注册中心也会将自己作为客户端来尝试注册它自己,所以我们需要禁用它的客户端注册行为。

在 yml中设置

eureka.client.register-with-eureka=false 

eureka.client.fetch-registry=false?

但在服务端是要这是为false的,在客户端需要设置为true的,当在客户端设置为true之后若还是报这个错误,说明配置有问题。

有一个很坑人的是

eureka.client.serviceUrl.defaultZone= http://localhost:8761/eureka/

这段代码中的url中的eureke不能换成任何其他的(客户端和服务端都不能换,即使换成一样的也不行)

 

坑!!!

was unable to refresh its cache! status = Cannot execute request on any known server

上一篇:技术管理进阶——关于成本优化与利益分配机制


下一篇:idea创建springboot项目用阿里云镜像