If you terminate the processes (e.g., Ctrl+C) you should be able to see a backtrace telling you where they are stuck. Is it at the init_rpc
function?
If so, @mrshenli do you know if we have a way to get more verbose logging information from the TCPStore to see what’s going on?
There’s one thing you could try in the meantime. Even if two machines can ping each other, it doesn’t mean that they can connect to all the ports. You could check this by running nc -l 192.168.206.100 5024
on the server and then nc 192.168.206.100 5024
(without -l
!) on the client, and type something (+ a newline) on the client’s console and see if it appears on the server’s one. The nc
is netcat which on some distributions is called differently, you should check yours.