问题场景: 服务器中有两个网卡假设IP为 10、13这两个开头的 13这个是可以使用的,10这个是不能使用 在这种情况下,服务注册时Eureka Client会自动选择10开头的ip为作为服务ip, 导致其它服务无法调用。
问题原因(参考别人博客得知):由于官方并没有写明Eureka Client探测本机IP的逻辑,所以只能翻阅源代码。Eureka Client的源码在eureka-client模块下,com.netflix.appinfo包下的InstanceInfo类封装了本机信息,其中就包括了IP地址。在 Spring Cloud 环境下,Eureka Client并没有自己实现探测本机IP的逻辑,而是交给Spring的InetUtils工具类的findFirstNonLoopbackAddress()方法完成的:
public InetAddress findFirstNonLoopbackAddress() { InetAddress result = null; try { // 记录网卡最小索引 int lowest = Integer.MAX_VALUE; // 获取所有网卡 for (Enumeration<NetworkInterface> nics = NetworkInterface .getNetworkInterfaces(); nics.hasMoreElements();) { NetworkInterface ifc = nics.nextElement(); if (ifc.isUp()) { log.trace("Testing interface: " + ifc.getDisplayName()); if (ifc.getIndex() < lowest || result == null) { lowest = ifc.getIndex(); // 记录索引 } else if (result != null) { continue; } // @formatter:off if (!ignoreInterface(ifc.getDisplayName())) { // 是否是被忽略的网卡 for (Enumeration<InetAddress> addrs = ifc .getInetAddresses(); addrs.hasMoreElements();) { InetAddress address = addrs.nextElement(); if (address instanceof Inet4Address && !address.isLoopbackAddress() && !ignoreAddress(address)) { 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 { return InetAddress.getLocalHost(); // 如果以上逻辑都没有找到合适的网卡,则使用JDK的InetAddress.getLocalhost() } catch (UnknownHostException e) { log.warn("Unable to retrieve localhost"); } return null; } 复制代码
解决方案:
1、忽略指定网卡
通过上面源码分析可以得知,spring cloud肯定能配置一个网卡忽略列表。通过查文档资料得知确实存在该属性:
spring.cloud.inetutils.ignored-interfaces[0]=eth0 # 忽略eth0, 支持正则表达式 复制代码
2、手工指定IP(推荐)
添加以下配置:
#在此配置完信息后 别的服务调用此服务时使用的 ip地址就是 10.21.226.253 # 指定此实例的ip eureka.instance.ip-address= # 注册时使用ip而不是主机名 eureka.instance.prefer-ip-address=true 复制代码
注:此配置是配置在需要指定固定ip的服务中, 假如 A 服务我运行的服务器中有两个网卡我只有 1网卡可以使用,所以就要注册服务的时候使用ip注册,这样别的服务调用A服务得时候从注册中心获取到的访问地址就是 我配置的这个参数 prefer-ip-address。