We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to setup epmd to listen to only ONE local IPv4. No binding to 0.0.0.0 or :::.
0.0.0.0
:::
$ ERL_EPMD_ADDRESS=10.40.95.10 epmd -d epmd: Tue Oct 6 21:38:18 2020: epmd running - daemon = 0 epmd: Tue Oct 6 21:38:18 2020: failed to bind on ipaddr 0.0.0.0: Cannot assign requested address
It tries to listen to ::1, too, as an strace shows. I think this is either a bug or needs a -4 parameter to only listen to IPv4 addresses.
::1
strace
-4
For context: I am trying to setup rabbitmq. Not 100% sure, if this is the correct epmd.
The text was updated successfully, but these errors were encountered:
https://github.com/erlang/epmd/blame/c27e1e3d37f9bb7f657782be5809b78a58b98b4d/README.md#L43
Note: $ERL_EPMD_ADDRESS and address is not yet implemented.
$ERL_EPMD_ADDRESS
address
I suspect you'd have to change these lines:
epmd/src/epmd.erl
Lines 106 to 108 in c27e1e3
to read it from an env var like these lines:
Lines 110 to 111 in c27e1e3
Sorry, something went wrong.
No branches or pull requests
I am trying to setup epmd to listen to only ONE local IPv4.
No binding to
0.0.0.0
or:::
.It tries to listen to
::1
, too, as anstrace
shows.I think this is either a bug or needs a
-4
parameter to only listen to IPv4 addresses.For context: I am trying to setup rabbitmq. Not 100% sure, if this is the correct epmd.
The text was updated successfully, but these errors were encountered: