The Erlang port mapper daemon (epmd) can now listen on IPv6 addresses. In addition, clients can now register and query epmd over IPv6. This, in turn, now allows Erlang clustering to work in an IPv6-only environment. Previously, epmd could only bind and listen on IPv4 addresses, thereby preventing the formation of Erlang clusters in IPv6-only environments.c
DescriptionJohn Eckersberg
2016-01-17 21:08:15 UTC
Description of problem:
Version-Release number of selected component (if applicable):
erlang-erts-R16B-03.10min.4.el7ost.x86_64
How reproducible:
Always
Steps to Reproduce:
[root@rhel7 ~]# epmd -daemon
[root@rhel7 ~]# ss -antp | grep epmd
LISTEN 0 128 *:4369 *:* users:(("epmd",2376,3))
[root@rhel7 ~]# epmd -kill
Killed
[root@rhel7 ~]# epmd -address ::1
epmd: Sun Jan 17 15:54:26 2016: cannot parse IP address "::1"
Actual results:
Does not bind to IPv6 by default or if explicitly
Expected results:
Should bind to both ipv4/6 by default, and able to parse and use ipv6 address for '-address' option
Additional info:
https://github.com/erlang/otp/pull/864
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.
For information on the advisory, and where to find the updated
files, follow the link below.
If the solution does not work for you, open a new bug report.
https://rhn.redhat.com/errata/RHBA-2016-0259.html
Description of problem: Version-Release number of selected component (if applicable): erlang-erts-R16B-03.10min.4.el7ost.x86_64 How reproducible: Always Steps to Reproduce: [root@rhel7 ~]# epmd -daemon [root@rhel7 ~]# ss -antp | grep epmd LISTEN 0 128 *:4369 *:* users:(("epmd",2376,3)) [root@rhel7 ~]# epmd -kill Killed [root@rhel7 ~]# epmd -address ::1 epmd: Sun Jan 17 15:54:26 2016: cannot parse IP address "::1" Actual results: Does not bind to IPv6 by default or if explicitly Expected results: Should bind to both ipv4/6 by default, and able to parse and use ipv6 address for '-address' option Additional info: https://github.com/erlang/otp/pull/864