Hi,
I am new to Erlang and trying to set two nodes on my laptop.
In one terminal I type:
eli@elimayost: ~/erlang_apps> erl -sname foo -setcookie secret
And in the second terminal:
eli@elimayost: ~/erlang_apps> erl -sname bar -setcookie secret
If I use the first terminal to ping the second:
(foo@elimayost)1> net_adm:ping(bar@elimayost).
I get a pang response (same response if I use the second term to ping the first term).
Any idea why?