Skip to content

Commit 31bd0fd

Browse files
authored
Merge pull request #102094 from dagiro/ts_hdinsight4
ts_hdinsight4
2 parents 4b4d6ce + 897df9c commit 31bd0fd

File tree

2 files changed

+54
-2
lines changed

2 files changed

+54
-2
lines changed

articles/hdinsight/TOC.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -503,6 +503,8 @@
503503
href: ./hadoop/apache-ambari-troubleshoot-down-hosts-services.md
504504
- name: Apache Ambari stale alerts
505505
href: ./hadoop/apache-ambari-troubleshoot-stale-alerts.md
506+
- name: Apache Ambari directory alerts
507+
href: ./hadoop/apache-ambari-troubleshoot-directory-alerts.md
506508
- name: Troubleshoot a slow or failing HDInsight cluster
507509
href: ./hdinsight-troubleshoot-failed-cluster.md
508510
- name: Apache Hadoop HDFS troubleshooting
@@ -511,8 +513,8 @@
511513
href: ./hdinsight-troubleshoot-yarn.md
512514
- name: Troubleshoot Data Lake Store files
513515
href: ./hadoop/hdinsight-troubleshoot-data-lake-files.md
514-
- name: Apache Ambari directory alerts
515-
href: ./hadoop/apache-ambari-troubleshoot-directory-alerts.md
516+
- name: Port conflict when starting services
517+
href: ./hadoop/troubleshoot-port-conflict.md
516518
- name: Apache Kafka
517519
items:
518520
- name: Overview
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
---
2+
title: Port conflict when starting services in Azure HDInsight
3+
description: Troubleshooting steps and possible resolutions for issues when interacting with Azure HDInsight clusters.
4+
author: hrasheed-msft
5+
ms.author: hrasheed
6+
ms.reviewer: jasonh
7+
ms.service: hdinsight
8+
ms.topic: troubleshooting
9+
ms.date: 01/23/2020
10+
---
11+
12+
# Scenario: Port conflict when starting services in Azure HDInsight
13+
14+
This article describes troubleshooting steps and possible resolutions for issues when interacting with Azure HDInsight clusters.
15+
16+
## Issue
17+
18+
A service fails to start.
19+
20+
## Cause
21+
22+
A port conflict exists.
23+
24+
## Resolution
25+
26+
### Method 1
27+
28+
Use below commands to get/kill all the running processes, which are affected by the port issue.
29+
30+
```bash
31+
netstat -lntp | grep <port>
32+
ps -ef | grep <service>
33+
kill -9 <service>
34+
```
35+
36+
Then start service.
37+
38+
### Method 2
39+
40+
Reboot the node.
41+
42+
## Next steps
43+
44+
If you didn't see your problem or are unable to solve your issue, visit one of the following channels for more support:
45+
46+
* Get answers from Azure experts through [Azure Community Support](https://azure.microsoft.com/support/community/).
47+
48+
* Connect with [@AzureSupport](https://twitter.com/azuresupport) - the official Microsoft Azure account for improving customer experience. Connecting the Azure community to the right resources: answers, support, and experts.
49+
50+
* If you need more help, you can submit a support request from the [Azure portal](https://portal.azure.com/?#blade/Microsoft_Azure_Support/HelpAndSupportBlade/). Select **Support** from the menu bar or open the **Help + support** hub. For more detailed information, review [How to create an Azure support request](https://docs.microsoft.com/azure/azure-supportability/how-to-create-azure-support-request). Access to Subscription Management and billing support is included with your Microsoft Azure subscription, and Technical Support is provided through one of the [Azure Support Plans](https://azure.microsoft.com/support/plans/).

0 commit comments

Comments
 (0)