HADOOP-13571. ServerSocketUtil.getPort() should use loopback address, not 0.0.0.0. Contributed by Eric Badger
This commit is contained in:
parent
be35fa186c
commit
6de1a8eb67
@ -22,6 +22,7 @@
|
|||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.net.InetAddress;
|
||||||
import java.net.ServerSocket;
|
import java.net.ServerSocket;
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
|
|
||||||
@ -49,7 +50,8 @@ public static int getPort(int port, int retries) throws IOException {
|
|||||||
if (tryPort == 0) {
|
if (tryPort == 0) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
try (ServerSocket s = new ServerSocket(tryPort)) {
|
try (ServerSocket s = new ServerSocket(tryPort, 50,
|
||||||
|
InetAddress.getLoopbackAddress())) {
|
||||||
LOG.info("Using port " + tryPort);
|
LOG.info("Using port " + tryPort);
|
||||||
return tryPort;
|
return tryPort;
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
|
Loading…
Reference in New Issue
Block a user