微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

springcloud注册hostname或者ip的那些事

Spring cloud是一个基于Spring Boot实现的服务治理工具包,在微服务架构中用于管理和协调服务的。这篇文章主要介绍了springcloud注册hostname或者ip,需要的朋友可以参考下

SpringCloud简介

Spring cloud是一个基于Spring Boot实现的服务治理工具包,在微服务架构中用于管理和协调服务的

微服务:就是把一个单体项目,拆分为多个微服务,每个微服务可以独立技术选型,独立开发,独立部署,独立运维.并且多个服务相互协调,相互配合,最终完成用户的价值.

Spring Cloud是一系列框架的有序集合。它利用Spring Boot的开发便利性巧妙地简化了分布式系统基础设施的开发,如服务发现注册、配置中心、消息总线、负载均衡、断路器、数据监控等,都可以用Spring Boot的开发风格做到一键启动和部署

五大重要组件

服务发现――Netflix Eureka

客服端负载均衡――Netflix Ribbon/Feign

服务网关――Netflix Zuul

断路器――Netflix Hystrix

分布式配置――Spring Cloud Config

认情况下,Eureka 使用 hostname 进行服务注册,以及服务信息的显示, 如果我们相拥 IP 地址的方式,可以在配置文件中配置 eureka.instance.prefer-ip-address=true

idea中ctrl+鼠标左键,点击 eureka.instance.prefer-ip-address=true 进入查看 EurekaInstanceConfigBean 会引入这个属性

EurekaInstanceConfigBean /** * Flag to say that, when guessing a hostname, the IP address of the server should be * used in prference to the hostname reported by the OS. */ private boolean preferIpAddress = false;

preferIpAddress: 首选IP地址。 认false,也就是认不注册ip.

肯定有地方做了判断,在 EurekaInstanceConfigBean 搜索preferIpAddress,发现了 getHostName 方法, 此方法用于返回得到的hostname或者ip

@Override public String getHostName(boolean refresh) { if (refresh && !this.hostInfo.override) { this.ipAddress = this.hostInfo.getIpAddress(); this.hostname = this.hostInfo.getHostname(); } return this.preferIpAddress ? this.ipAddress : this.hostname; }

1.首先会判断: this.hostInfo.override 属性. 此属性在setIpAddress方法里设置。setIpAddress方法对应的是 eureka.instance.ip-address= 这个配置属性

也就是说: eureka.instance.ip-address 和 eureka.instance.prefer-ip-address = true 同时设置是优先取 eureka.instance.ip-address 的配置

public void setIpAddress(String ipAddress) { this.ipAddress = ipAddress; this.hostInfo.override = true; }

2.preferIpAddress为false返回hostname属性,为true返回ipAddress属性 在EurekaInstanceConfigBean搜索hostname 会返现hostname 与ipAddress 可从hostInfo获得;hostInfo从inetUtils.findFirstNonLoopbackHostInfo获得。

public EurekaInstanceConfigBean(InetUtils inetUtils) { this.inetUtils = inetUtils; this.hostInfo = this.inetUtils.findFirstNonLoopbackHostInfo(); this.ipAddress = this.hostInfo.getIpAddress(); this.hostname = this.hostInfo.getHostname(); }

重点就落在了这个InetUtils.findFirstNonLoopbackHostInfo方法上。

public InetAddress findFirstNonLoopbackAddress() { InetAddress result = null; try { // 记录网卡最小索引 int lowest = Integer.MAX_VALUE; // 获取所有网卡 for (Enumeration nics = NetworkInterface .getNetworkInterfaces(); nics.hasMoreElements();) { NetworkInterface ifc = nics.nextElement(); if (ifc.isUp()) {//判断网卡是否工作 log.trace("Testing interface: " + ifc.getdisplayName()); if (ifc.getIndex() addrs = ifc .getInetAddresses(); addrs.hasMoreElements();) { InetAddress address = addrs.nextElement(); if ( address instanceof Inet4Address//是IPV4 && !address.isLoopbackAddress()//不是回环地址(127.***) && isPreferredAddress(address)) {//有推荐网卡,判断是推荐网卡内的ip log.trace("Found non-loopback interface: " + ifc.getdisplayName()); result = address; } } } // @formatter:on } } } catch (IOException ex) { log.error("Cannot get first non-loopback address", ex); } if (result != null) { return result; } try { //都没有找到使用JDK的InetAddress获取 return InetAddress.getLocalHost(); } catch (UnkNownHostException e) { log.warn("Unable to retrieve localhost"); } return null; }

方法,会获 取所有网卡,取ip地址合理、索引值最小且不在忽略列表的网卡的IP地址 作为结果。如果没有找到合适的IP, 就调用 InetAddress.getLocalHost() 方法

至此我们来总结下,关于注册的几种灵活配置:

Ip注册: eureka.instance.prefer-ip-address=true

指定IP注册: eureka.instance.ip-address=

忽略网卡: spring.cloud.inetutils.ignored-interfaces[0]

推荐网卡: spring.cloud.inetutils.preferrednetworks[0]

配置本机的host文件:当InetUtils找不到合适ip时,会调用JDK的 InetAddress.getLocalHost() 。该方法会根据本机的hostname解析出对应的ip。所以可以配置本机的hostname和 /etc/hosts 文件,直接将本机的主机名映射到有效IP地址

总结

如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐