HDFS-4448. Allow HA NN to start in secure mode with wildcard address configured (atm via asuresh)
This commit is contained in:
parent
d9bcf99aef
commit
baf8bc6c48
@ -461,6 +461,9 @@ Release 2.8.0 - UNRELEASED
|
||||
HDFS-8218. Move classes that used by ClientProtocol into hdfs-client.
|
||||
(wheat9)
|
||||
|
||||
HDFS-4448. Allow HA NN to start in secure mode with wildcard address
|
||||
configured (atm via asuresh)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
HDFS-8026. Trace FSOutputSummer#writeChecksumChunks rather than
|
||||
|
@ -1017,17 +1017,10 @@ public static String getHttpClientScheme(Configuration conf) {
|
||||
*/
|
||||
@VisibleForTesting
|
||||
static String substituteForWildcardAddress(String configuredAddress,
|
||||
String defaultHost) throws IOException {
|
||||
String defaultHost) {
|
||||
InetSocketAddress sockAddr = NetUtils.createSocketAddr(configuredAddress);
|
||||
InetSocketAddress defaultSockAddr = NetUtils.createSocketAddr(defaultHost
|
||||
+ ":0");
|
||||
final InetAddress addr = sockAddr.getAddress();
|
||||
if (addr != null && addr.isAnyLocalAddress()) {
|
||||
if (UserGroupInformation.isSecurityEnabled() &&
|
||||
defaultSockAddr.getAddress().isAnyLocalAddress()) {
|
||||
throw new IOException("Cannot use a wildcard address with security. " +
|
||||
"Must explicitly set bind address for Kerberos");
|
||||
}
|
||||
return defaultHost + ":" + sockAddr.getPort();
|
||||
} else {
|
||||
return configuredAddress;
|
||||
|
Loading…
Reference in New Issue
Block a user