对于spring cloud项目启动报错“ Cannot determine local hostname”的问题的解决方法

对于spring cloud项目启动报错“ Cannot determine local hostname”的问题的解决方法,第1张

报错信息: o.s.cloud.commons.util.InetUtils : Cannot determine local hostname

虽然不影响项目的正常进行,但是卡的时间挺长的,无法忍受

原因:解析不了hostname, 找不到localhost与主机ip的对应关系,即使配置host文件,也不能解决。 很难可能就是你的电脑存在多张网卡,或者存在虚拟机造成的

 

解决办法: 项目配置文件里加入忽略虚拟机网卡,重新启动就没有报错信息

spring:
  cloud:
    inetutils:
      ignored-interfaces: 'VMware Virtual Ethernet Adapter for VMnet1,VMware Virtual Ethernet Adapter for VMnet8'

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/923778.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-16
下一篇 2022-05-16

发表评论

登录后才能评论

评论列表(0条)

保存