Talking to dora nodes on different machines #581
Answered
by
phil-opp
Geoffrey-Hooton
asked this question in
Q&A
-
Hi! Sorry if this question has been asked before; I'm still relatively new to using Dora. I'm currently running three Dora nodes on my local machine, but I'm hoping to run another node (meant for plotting) on a separate machine. I saw issues #459 and #535 and am still a bit confused about whether there is currently a way to hardcode the address of a separate machine for communication between nodes. My question is:
Thanks in advance for your help! |
Beta Was this translation helpful? Give feedback.
Answered by
phil-opp
Jul 11, 2024
Replies: 1 comment 8 replies
-
Dora currently works like this:
Does that make sense? Please let me know if something is unclear! |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See
dora daemon --help
for details on the argument format. The--coordinator-addr
argument expects an address inIP:PORT
format. The default port number that the coordinator listens on is53290
(this is printed bydora coordinator
).You need to specify the absolute path of the file on the remote machine. We don't have a deploy feature yet, so you need to copy the executable to the remote machine yourself.
Both machines need to use the same
…