Просмотр исходного кода
feat: supports user-defined EPMD_ARGS environment variable
Now the user is able to use epmd mode by setting the EPMD_ARGS manually:
```
EPMD_ARGS="-start_epmd=true" _build/emqx-enterprise/rel/emqx/bin/emqx console
```
This is useful when a developer wants to connect a temporary Erlang node to the EMQX node.
For example, the developer may want to enable the observer tool in another Erlang shell to debug a remote EMQX node:
```
erl -name test@127.0.0.1 -setcookie emqxsecretcookie
(test@127.0.0.1)2> observer:start().
```