Skip to content

Instantly share code, notes, and snippets.

Created November 5, 2013 19:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/7324533 to your computer and use it in GitHub Desktop.
Save anonymous/7324533 to your computer and use it in GitHub Desktop.
iex remote node
Node A:
iex --sname "nodea"
iex> Process.register self, :iex
Node B:
iex --sname "nodeb"
iex> Node.connect :"nodea@myhostname"
true
parent = self
Node.spawn_link(:"nodea@myhostname", fn ->
parent <- Process.whereis(:iex)
end)
receive do
iex_pid -> iex_pid
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment