Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to start an iex session with cookie and erl options

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?

like image 710
Peter Saxton Avatar asked Mar 10 '23 18:03

Peter Saxton


1 Answers

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
like image 152
Peter Saxton Avatar answered Mar 24 '23 20:03

Peter Saxton