- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Connection between nodes
- Labels:
-
HDFS
Created 08-01-2022 07:16 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to check if one node is connected to another node?
Created 08-01-2022 11:11 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you @rki_
This solution is really helpful 😊
