Skip to content

Commit 928b400

Browse files
author
Sreekanth Iyer (Ushta Te Consultancy Services)
committed
Improved Correctness Score
1 parent f28b64b commit 928b400

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/hdinsight/hdinsight-apps-install-custom-applications.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ ms.date: 01/02/2025
1111

1212
In this article, you'll learn how to install an [Apache Hadoop](https://hadoop.apache.org/) application on Azure HDInsight, which hasn't been published to the Azure portal. The application you'll install in this article is [Hue](https://gethue.com/).
1313

14-
An HDInsight application is an application that users can install on a HDInsight cluster. These applications can be developed by Microsoft, independent software vendors (ISV) or by yourself.
14+
A HDInsight application is an application that users can install on a HDInsight cluster. These applications can be developed by Microsoft, independent software vendors (ISV) or by yourself.
1515

1616
## Prerequisites
1717

18-
If you want to install HDInsight applications on an existing HDInsight cluster, you must have an HDInsight cluster. To create one, see [Create clusters](hadoop/apache-hadoop-linux-tutorial-get-started.md). You can also install HDInsight applications when you create an HDInsight cluster.
18+
If you want to install HDInsight applications on an existing HDInsight cluster, you must have a HDInsight cluster. To create one, see [Create clusters](hadoop/apache-hadoop-linux-tutorial-get-started.md). You can also install HDInsight applications when you create a HDInsight cluster.
1919

2020
## Install HDInsight applications
2121

22-
HDInsight applications can be installed when you create a cluster or to an existing HDInsight cluster. For defining Azure Resource Manager templates, see [MSDN: Install an HDInsight application](/rest/api/hdinsight/hdinsight-application).
22+
HDInsight applications can be installed when you create a cluster or to an existing HDInsight cluster. For defining Azure Resource Manager templates, see [MSDN: Install a HDInsight application](/rest/api/hdinsight/hdinsight-application).
2323

2424
The files needed for deploying this application (Hue):
2525

26-
* [azuredeploy.json](https://github.com/hdinsight/Iaas-Applications/blob/master/Hue/azuredeploy.json): The Resource Manager template for installing HDInsight application. See [MSDN: Install an HDInsight application](/rest/api/hdinsight/hdinsight-application) for developing your own Resource Manager template.
26+
* [azuredeploy.json](https://github.com/hdinsight/Iaas-Applications/blob/master/Hue/azuredeploy.json): The Resource Manager template for installing HDInsight application. See [MSDN: Install a HDInsight application](/rest/api/hdinsight/hdinsight-application) for developing your own Resource Manager template.
2727
* [hue-install_v0.sh](https://github.com/hdinsight/Iaas-Applications/blob/master/Hue/scripts/Hue-install_v0.sh): The Script action being called by the Resource Manager template for configuring the edge node.
2828
* [hue-binaries.tgz](https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv01/hue-binaries-14-04.tgz): The hue binary file being called from hui-install_v0.sh.
2929
* [hue-binaries-14-04.tgz](https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv01/hue-binaries-14-04.tgz): The hue binary file being called from hui-install_v0.sh.
@@ -35,7 +35,7 @@ The files needed for deploying this application (Hue):
3535

3636
<a href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fhdinsight%2FIaas-Applications%2Fmaster%2FHue%2Fazuredeploy.json" target="_blank"><img src="./media/hdinsight-apps-install-custom-applications/hdi-deploy-to-azure1.png" alt="Deploy to Azure button for new cluster"></a>
3737

38-
The Resource Manager template is located at [https://github.com/hdinsight/Iaas-Applications/tree/master/Hue](https://github.com/hdinsight/Iaas-Applications/tree/master/Hue). To learn how to write this Resource Manager template, see [MSDN: Install an HDInsight application](/rest/api/hdinsight/hdinsight-application).
38+
The Resource Manager template is located at [https://github.com/hdinsight/Iaas-Applications/tree/master/Hue](https://github.com/hdinsight/Iaas-Applications/tree/master/Hue). To learn how to write this Resource Manager template, see [MSDN: Install a HDInsight application](/rest/api/hdinsight/hdinsight-application).
3939

4040
1. Select the existing **Resource group** that contains your cluster from the drop-down list. It's required to use the same resource group as the cluster.
4141

@@ -53,7 +53,7 @@ You can see the installation status from the tile pinned to the portal dashboard
5353

5454
<a href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fhditutorialdata.blob.core.windows.net%2Fhdinsightapps%2Fcreate-linux-based-hadoop-cluster-in-hdinsight.json" target="_blank"><img src="./media/hdinsight-apps-install-custom-applications/hdi-deploy-to-azure1.png" alt="Deploy to Azure button for new cluster"></a>
5555

56-
To learn how to write this Resource Manager template, see [MSDN: Install an HDInsight application](/rest/api/hdinsight/hdinsight-application).
56+
To learn how to write this Resource Manager template, see [MSDN: Install a HDInsight application](/rest/api/hdinsight/hdinsight-application).
5757

5858
2. Follow the instruction to create cluster and install Hue. For more information on creating HDInsight clusters, see [Create Linux-based Hadoop clusters in HDInsight](hdinsight-hadoop-provision-linux-clusters.md).
5959

@@ -101,7 +101,7 @@ If an application installation failed, you can see the error messages and debug
101101
102102
Open the cluster from the portal, and select Applications from Settings:
103103
104-
:::image type="content" source="./media/hdinsight-apps-install-custom-applications/hdinsight-apps-error.png" alt-text="hdinsight applications application installation error.":::
104+
:::image type="content" source="./media/hdinsight-apps-install-custom-applications/hdinsight-apps-error.png" alt-text="hdinsight application installation error.":::
105105
106106
* HDInsight script action: If the HDInsight Applications' error message indicates a script action failure, more details about the script failure will be presented in the script actions pane.
107107
@@ -133,8 +133,8 @@ az hdinsight application delete --name NAME --cluster-name CLUSTERNAME --resourc
133133

134134
## Next steps
135135

136-
* [MSDN: Install an HDInsight application](/rest/api/hdinsight/hdinsight-application): learn how to develop Resource Manager templates for deploying HDInsight applications.
137-
* [Install HDInsight applications](hdinsight-apps-install-applications.md): Learn how to install an HDInsight application to your clusters.
136+
* [MSDN: Install a HDInsight application](/rest/api/hdinsight/hdinsight-application): learn how to develop Resource Manager templates for deploying HDInsight applications.
137+
* [Install HDInsight applications](hdinsight-apps-install-applications.md): Learn how to install a HDInsight application to your clusters.
138138
* [Publish HDInsight applications](hdinsight-apps-publish-applications.md): Learn how to publish your custom HDInsight applications to Azure Marketplace.
139139
* [Customize Linux-based HDInsight clusters using Script Action](hdinsight-hadoop-customize-cluster-linux.md): learn how to use Script Action to install additional applications.
140140
* [Create Linux-based Apache Hadoop clusters in HDInsight using Resource Manager templates](hdinsight-hadoop-create-linux-clusters-arm-templates.md): learn how to call Resource Manager templates to create HDInsight clusters.

0 commit comments

Comments
 (0)