I am in the process of testing a small system.
It is very time consuming each time I make a change because I need to:
- Start 4 Erlang Nodes/Vms with specific names
- Run a single line of code on each of them
- messenger:start_server().
- messenger:start_router().
- messenger:logon(steven).
- messenger:logon(dave).
Each one of those lines is executed on a different node.
Is there anyway I can automate things? I was looking at boot scripts but I cannot find anything that is simple and relative to me
You can try to create simple bash script:
All output from node you can find in
/tmp/nodeN
directory. You can connect to the node with following bash command:You can find more info in erl man and run_erl man.