tags:

views:

74

answers:

2

hello

i m graduate student and as my project i have to run Erlang Chat Application, but i am confused to run 2 nodes on my single machine having windows vista. can anybody help me please to run the application.

regards anum

+2  A: 

Here's an introduction to Distributed Erlang.

Here's an example where it's explained how to start two Erlang nodes on the same LAN.

Roberto Aloi
+3  A: 

In one window run

c:\program files\erl5.7.1\bin\werl -sname x

and in another run

c:\program files\erl5.7.1\bin\werl -sname y

Check for the exact path to your Erlang system. This will give you two Erlangs running in separate windows on the same machine. As you are running them from the same user there should be no problems with authentication. Check the links in @Roberto's answer for more information and details of what is going on and how to get them to communicate with each other.

rvirding