failed to req API:/nacos/v1/ns/instance after all servers([localhost:8848])

目录

  • 原因1:卡机
  • 原因2:配置错误

原因1:卡机

仔细观察我的Nacos日志后发现是Nacos没启动起来,足足花费了30分钟才启动,
应该是电脑卡机导致的,之前电脑启动Nacos很快的!!只要启动了Nacos服务就可以解决该报错!

后续:
后面是选择这个CMD里面一些内容复制,然后右键粘贴到里面好像是能刷新这个CMD的内容,然后就启动成功了
failed to req API:/nacos/v1/ns/instance after all servers([localhost:8848])_第1张图片

原因2:配置错误

Nacos默认采用了localhost地址下的8848端口,我的User Service配置Nacos端口时配置错误,其中User Service的bootstrap.yml配置出现错误,错误的配置了80端口,导致两者没对应上,改成8848之后解决了问题,最后User Service成功注册到了Nacos
failed to req API:/nacos/v1/ns/instance after all servers([localhost:8848])_第2张图片

你可能感兴趣的:(spring-,boot,Java,Nacos)