<div dir="ltr">Hi List,<br><br>I try "epmdlessless" configuration described in:<br>  Running Erlang Releases without EPMD on OTP 23.1+ · Erlware Blog<br>  <a href="https://blog.erlware.org/epmdlessless/">https://blog.erlware.org/epmdlessless/</a><br><br>It works as described, thanks to people who contributed to the feature!<br>However, it behaves in an unexpected way (to me) under epmd daemon running case.<br><br>Expected behavior is the case without running epmd daemon. After launching a node as:<br><br>% erl -sname foo -start_epmd false -erl_epmd_port 14693<br>Erlang/OTP 23 [erts-11.1.4] [source] [64-bit] [smp:16:16] [ds:16:16:10] [async-threads:1]<br><br>epmd daemon does *NOT* start, as expected:<br><br>% epmd -names<br>epmd: Cannot connect to local epmd<br><br>On the other hand, after epmd daemon started as epmd -daemon,<br>by executing the same erl command above, the node is registered to epmd daemon:<br><br>% epmd -names<br>epmd: up and running on port 4369 with data:<br>name foo at port 14693<br><br>The questions are:<br>- Is this behavior expected (to other than me)?<br>- Is there any option(s) of erl command to avoid registration to epmd?<br>  # I guess it's possible by using <a href="https://github.com/tsloughter/epmdless">https://github.com/tsloughter/epmdless</a><br><br>Thanks,<br>Shino<br></div>