If I start an IEx
session in the following manner the cookie is set correctly.
$ iex --name [email protected] --cookie mycookie -S mix
...
iex([email protected])1> :erlang.get_cookie
:mycookie
However if I also set erlang arguments to get use my sys.config
file the cookie is not set correctly.
$ iex --name [email protected] --cookie mycookie --erl "config sys.config" -S mix
...
iex([email protected])1> :erlang.get_cookie
:USLOPZLYUPUYMEGXBMJQ
How can I set both a config and cookie as command line arguments?
The erlang configuration to set a cookie is setcookie
not cookie
. Can be solved by starting as follows.
$ iex --name [email protected] --erl "-config sys.config -setcookie mycookie" -S mix
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With