問題場景: 服務器中有兩個網卡假設IP爲 十、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()方法完成的:spring
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;
}
複製代碼
解決方案:bash
一、忽略指定網卡服務器
經過上面源碼分析能夠得知,spring cloud確定能配置一個網卡忽略列表。經過查文檔資料得知確實存在該屬性:app
spring.cloud.inetutils.ignored-interfaces[0]=eth0 # 忽略eth0, 支持正則表達式
複製代碼
二、手工指定IP(推薦)工具
添加如下配置:oop
#在此配置完信息後 別的服務調用此服務時使用的 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。源碼分析