Reputation: 3696
Is it possible in an HDInsight Hadoop Linux cluster to remotely connect to any of the worker nodes?
The Azure Portal provides only one server name for the purpose of connecting using SSH. I believe it is one of the head nodes , but we generally have two head nodes then which of the two head nodes gets connected?
Is not there any way to connect to an individual worker nodes this way? I don't want to just see the status in Ambari. I want to be able to directly run commands on the worker nodes.
Upvotes: 2
Views: 3253
Reputation: 431
There's two ways:
https://azure.microsoft.com/en-us/documentation/articles/hdinsight-extend-hadoop-virtual-network/ talks more about using a virtual network with HDinsight.
Upvotes: 1
Reputation: 33
As per the azure documentation, The worker nodes are not directly accessible from outside the Azure datacenter, but they can be accessed from the cluster head node via SSH. To ssh worker nodes follow this link.
Upvotes: 1
Reputation: 1511
I believe you have to do it from within the head node. So ssh into the head node the portal and then from ssh into the worker of your choose.
Upvotes: 1