We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b7288c commit 86cbb8aCopy full SHA for 86cbb8a
src/cluster.jl
@@ -1292,7 +1292,9 @@ function init_bind_addr()
1292
else
1293
bind_port = 0
1294
try
1295
- # Use the first non-link-local IPv4 address
+ # On HPC clusters, link-local addresses are usually not usable for
1296
+ # communication between compute nodes.
1297
+ # Therefore, we use the first non-link-local IPv4 address.
1298
addrs = Sockets.getipaddrs(Sockets.IPv4)
1299
filter!(!Sockets.islinklocaladdr, addrs)
1300
bind_addr = string(first(addrs))
0 commit comments