mac启动springboot项目很慢的解决,inetaddress.getlocalhost().gethostname() took 5005 milliseconds to respond.
springboot版本2.4.6,macOS版本10.15.7。本地启动感觉速度很慢,看了一下启动日志,发现一行warn日志:
·
springboot版本2.4.6,macOS版本10.15.7。
本地启动感觉速度很慢,看了一下启动日志,发现一行warn日志:
inetaddress.getlocalhost().gethostname() took 5005 milliseconds to respond. please verify your network configuration (macos machines may need to add entries to /etc/hosts).
大意是主机名地址解析花了5秒多,请检查你的网络配置(macos的机器名可能需要加入/etc/hosts中)。
解决
在mac的命令终端执行以下命令:
yangzihe1@yangzihe1deMacBook-Pro ~ % hostname
yangzihe1deMacBook-Pro.local
yangzihe1@yangzihe1deMacBook-Pro ~ % vim /private/etc/hosts
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
将你的机器名加入配置中:
127.0.0.1 localhost yangzihe1deMacBook-Pro.local
255.255.255.255 broadcasthost
::1 localhost yangzihe1deMacBook-Pro.local
直接 ":wq" 保存会提示文件是只读的,所以使用超级管理员的权限:
:w !sudo tee %
按照提示输入mac登录密码,最后退出 ":q!",再去启动项目发现启动时间从28秒变成了3秒不到。
更多推荐
已为社区贡献10条内容
所有评论(0)