Opening a port on an Azure HDInsight cluster

I have a microsoft Azure HDInsight cluster.

On node, I launch and run an application that binds to port 8080. I would like to be able to connect to this application from outside the cluster.

I have a connection string to the cluster ( https://xxxxx.azurehdinsight.net ), but when I try to connect to it, I lose time.

I believe that this is due to the fact that I did not open port 8080 to the public. How can I do this, since under the cluster I have only Hadoop Services and username ....

+6
source share
1 answer

At the moment, we do not allow you to control / open additional network ports in the HDInsight cluster.

You can deploy an HDInsight cluster to an Azure Virtual network if you want another machine in Azure to have access to all ports / nodes in the cluster. We have documented how to deploy to vnet in this article .

+3
source

Source: https://habr.com/ru/post/980528/


All Articles