概述
1、 错误信息
2021-12-22 18:06:42.658 ERROR 12172 --- [nfoReplicator-0] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error. endpoint=DefaultEndpoint{ serviceUrl='http://localhost:8761/eureka/}
at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) [spring-boot-devtools-2.2.5.RELEASE.jar:2.2.5.RELEASE]
Caused by: java.net.ConnectException: Connection refused: connect at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method) ~[na:1.8.0_41]
2、 错误原因
配置文件application.yml的 eureka配置没有写正确,这个是springcloud学习的时候使用eureka的服务时报错,启动eureka client 7001端口的服务时报错。
3、 错误的配置(最后的两行书写错误)
eureka:
client:
#表示是否将自已注册进Eurekaserver默认为true
register-with-eureka: true
#是否从EurekaServer抓取已有的注册信息,默认为true。单节点无所谓,集群必须设置为true才能配合ribbon使用负载均衡
fetch-registry: true
service-ur1:
defaultzone: http://localhost:7001/eureka
4、 正确的配置
eureka:
client:
#表示是否将自已注册进Eurekaserver默认为true
register-with-eureka: true
#是否从EurekaServer抓取已有的注册信息,默认为true。单节点无所谓,集群必须设置为true才能配合ribbon使用负载均衡
fetch-registry: true
service-url:
defaultZone: http://localhost:7001/eureka
最后
以上就是傻傻冬瓜为你收集整理的springcloud的Eureka client服务启动报错:Caused by: java.net.ConnectException: Connection refused: connect的全部内容,希望文章能够帮你解决springcloud的Eureka client服务启动报错:Caused by: java.net.ConnectException: Connection refused: connect所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复