Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]
Created 08-01-2022 07:16 PM
How to check if one node is connected to another node?
Created 08-01-2022 11:11 PM
Hi @Big-dAta
A simple test would be a ping test from the source node to the target node.
#ping <ip-address-of-target-node>
You can also use Telnet to check if the other node is listening on a specific port.
# telnet <ip-address-of-target-node> <port>
Created 08-01-2022 11:11 PM
Hi @Big-dAta
A simple test would be a ping test from the source node to the target node.
#ping <ip-address-of-target-node>
You can also use Telnet to check if the other node is listening on a specific port.
# telnet <ip-address-of-target-node> <port>
Created 08-01-2022 11:48 PM
Thank you @rki_
This solution is really helpful 😊