使用solr的集群功能,在linux上部署,奇怪的是,节点的ip有的时候准确,有的时候不准确。我的ip明明是 192.168.*.*.但是,却是显示了一个外网的地址。
经过原因查找,终于找到问题的所在。
原来在 ZkController 的 hostaddress = InetAddress.getLocalHost().getHostAddress();
InetAddress.getLocalHost().getHostAddress();这个方法,本来在linux上就存在问题。修改成如下即可解决。
hostaddress = OsUtil.getLocalIP();
OsUtil类的源码如下。
package org.apache.solr.cloud;
import java.net.InetAddress;
import java.net.NetworkInterface;
import java.net.SocketException;
import java.net.UnknownHostException;
import java.util.Enumeration;
public class OsUtil{
/**
* 判断当前操作是否Windows.
*
* @return true---是Windows操作系统
*/
public static boolean isWindowsOS() {
boolean isWindowsOS = false;
String osName = System.getProperty("os.name");
if (osName.toLowerCase().indexOf("windows") > -1) {
isWindowsOS = true;
}
return isWindowsOS;
}
/**
* 获取本机IP地址,并自动区分Windows还是Linux操作系统
*
* @return String
* @throws UnknownHostException
* @throws SocketException
*/
public static String getLocalIP() throws UnknownHostException, SocketException {
String sIP = "";
InetAddress ip = null;
// 如果是Windows操作系统
if (isWindowsOS()) {
ip = InetAddress.getLocalHost();
}
// 如果是Linux操作系统
else {
boolean bFindIP = false;
Enumeration<NetworkInterface> netInterfaces = (Enumeration<NetworkInterface>) NetworkInterface
.getNetworkInterfaces();
while (netInterfaces.hasMoreElements()) {
if (bFindIP) {
break;
}
NetworkInterface ni = (NetworkInterface) netInterfaces
.nextElement();
// ----------特定情况,可以考虑用ni.getName判断
// 遍历所有ip
Enumeration<InetAddress> ips = ni.getInetAddresses();
while (ips.hasMoreElements()) {
ip = (InetAddress) ips.nextElement();
if (ip.isSiteLocalAddress() && !ip.isLoopbackAddress() // 127.开头的都是lookback地址
&& ip.getHostAddress().indexOf(":") == -1) {
bFindIP = true;
break;
}
}
}
}
if (null != ip) {
sIP = ip.getHostAddress();
}
return sIP;
}
}