vote up 2 vote down star

Hi.

I have a running erlang application, launched with this command line

erl -boot start_sasl -config config/cfg_qa -detached -name peasy -cookie peasy -pa ./ebin -pa ./ebin/mochiweb -s peasy start

If I start a new node and run appmon:start(), the 'peasy' node won't show up, even if using the same cookie. The same happens with webtool:start()

Anyone?

flag

67% accept rate

1 Answer

vote up 3 vote down check

Found.

As always with erlang, to have two nodes speak to each other, you need to ping:

1> net_adm:ping(other_node_you_want_to_monitor).
pong
2> appmon:start().
{ok,<0.48.0>}

And off you go :)

link|flag
Actually, any way to look up the atom to see if there is a node by that name. Ping happen to be an easy schmeasy way to make that happen though. – Christian Jul 24 at 23:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.