Skip to content

Commit 31787a6

Browse files
authored
Merge pull request #101509 from spelluru/sbusehub0117
Troubleshooting steps and SEO updates
2 parents 9a05f44 + 37d582d commit 31787a6

11 files changed

+30
-30
lines changed

articles/event-hubs/event-hubs-messaging-exceptions.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -102,25 +102,25 @@ ExceptionId: 00000000000-00000-0000-a48a-9c908fbe84f6-ServerBusyException: The r
102102
## Connectivity, certificate, or timeout issues
103103
The following steps may help you with troubleshooting connectivity/certificate/timeout issues for all services under *.servicebus.windows.net.
104104

105-
- Browse to or [wget](https://www.gnu.org/software/wget/) `https://sbwagn2.servicebus.windows.net/`. It helps with checking whether you have IP filtering or virtual network or certificate chain issues (most common when using java SDK).
106-
- Run the following command to check if any port is blocked on the firewall. Depending on the library you use, other ports are also used. For example: 443, 5672, 9354.
105+
- Browse to or [wget](https://www.gnu.org/software/wget/) `https://<yournamespacename>.servicebus.windows.net/`. It helps with checking whether you have IP filtering or virtual network or certificate chain issues (most common when using java SDK).
106+
- Run the following command to check if any port is blocked on the firewall. Ports used are 443 (HTTPS), 5671 (AMQP) and 9354 (Net Messaging/SBMP). Depending on the library you use, other ports are also used. Here is the sample command that check whether the 5671 port is blocked.
107107

108108
```powershell
109-
tnc sbwagn2.servicebus.windows.net -port 5671
109+
tnc <yournamespacename>.servicebus.windows.net -port 5671
110110
```
111111
112112
On Linux:
113113
114114
```shell
115-
telnet sbwagn2.servicebus.windows.net 5671
115+
telnet <yournamespacename>.servicebus.windows.net 5671
116116
```
117-
- When there are intermittent connectivity issues, run the following command to check if there are any dropped packets. This command will try to establish 25 different TCP connections every 1 second with the service then you can check how many succeeded/failed and also see TCP connection latency. You can download the `psping` tool from [here](/sysinternals/downloads/psping).
117+
- When there are intermittent connectivity issues, run the following command to check if there are any dropped packets. This command will try to establish 25 different TCP connections every 1 second with the service. Then, you can check how many of them succeeded/failed and also see TCP connection latency. You can download the `psping` tool from [here](/sysinternals/downloads/psping).
118118
119119
```shell
120-
.\psping.exe -n 25 -i 1 -q yournamespace.servicebus.windows.net:5671 -nobanner
120+
.\psping.exe -n 25 -i 1 -q <yournamespacename>.servicebus.windows.net:5671 -nobanner
121121
```
122122
You can use equivalent commands if you're using other tools such as `tnc`, `ping`, and so on.
123-
- Obtain a network trace if the previous steps don't help and analyze it or contact [Microsoft Support](https://support.microsoft.com/).
123+
- Obtain a network trace if the previous steps don't help and analyze it using tools such as [Wireshark](https://www.wireshark.org/). Contact [Microsoft Support](https://support.microsoft.com/) if needed.
124124
125125
## Next steps
126126

articles/service-bus-messaging/service-bus-messaging-exceptions.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.devlang: na
1313
ms.topic: article
1414
ms.tgt_pltfrm: na
1515
ms.workload: na
16-
ms.date: 09/21/2018
16+
ms.date: 01/17/2020
1717
ms.author: aschhab
1818

1919
---
@@ -107,25 +107,25 @@ For queues and topics, the timeout is specified either in the [MessagingFactoryS
107107
## Connectivity, certificate, or timeout issues
108108
The following steps may help you with troubleshooting connectivity/certificate/timeout issues for all services under *.servicebus.windows.net.
109109

110-
- Browse to or [wget](https://www.gnu.org/software/wget/) `https://sbwagn2.servicebus.windows.net/`. It helps with checking whether you have IP filtering or virtual network or certificate chain issues (most common when using java SDK).
111-
- Run the following command to check if any port is blocked on the firewall. Depending on the library you use, other ports are also used. For example: 443, 5672, 9354.
110+
- Browse to or [wget](https://www.gnu.org/software/wget/) `https://<yournamespace>.servicebus.windows.net/`. It helps with checking whether you have IP filtering or virtual network or certificate chain issues (most common when using java SDK).
111+
- Run the following command to check if any port is blocked on the firewall. Ports used are 443 (HTTPS), 5671 (AMQP) and 9354 (Net Messaging/SBMP). Depending on the library you use, other ports are also used. Here is the sample command that check whether the 5671 port is blocked.
112112

113113
```powershell
114-
tnc sbwagn2.servicebus.windows.net -port 5671
114+
tnc <yournamespacename>.servicebus.windows.net -port 5671
115115
```
116116
117117
On Linux:
118118
119119
```shell
120-
telnet sbwagn2.servicebus.windows.net 5671
120+
telnet <yournamespacename>.servicebus.windows.net 5671
121121
```
122-
- When there are intermittent connectivity issues, run the following command to check if there are any dropped packets. This command will try to establish 25 different TCP connections every 1 second with the service then you can check how many succeeded/failed and also see TCP connection latency. You can download the `psping` tool from [here](/sysinternals/downloads/psping).
122+
- When there are intermittent connectivity issues, run the following command to check if there are any dropped packets. This command will try to establish 25 different TCP connections every 1 second with the service. Then, you can check how many of them succeeded/failed and also see TCP connection latency. You can download the `psping` tool from [here](/sysinternals/downloads/psping).
123123
124124
```shell
125-
.\psping.exe -n 25 -i 1 -q yournamespace.servicebus.windows.net:5671 -nobanner
125+
.\psping.exe -n 25 -i 1 -q <yournamespace>.servicebus.windows.net:5671 -nobanner
126126
```
127127
You can use equivalent commands if you're using other tools such as `tnc`, `ping`, and so on.
128-
- Obtain a network trace if the previous steps don't help and analyze it or contact [Microsoft Support](https://support.microsoft.com/).
128+
- Obtain a network trace if the previous steps don't help and analyze it using tools such as [Wireshark](https://www.wireshark.org/). Contact [Microsoft Support](https://support.microsoft.com/) if needed.
129129
130130
131131
## Next steps

articles/service-bus-messaging/service-bus-nodejs-how-to-use-topics-subscriptions-new-package.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.workload: na
1313
ms.tgt_pltfrm: na
1414
ms.devlang: nodejs
1515
ms.topic: quickstart
16-
ms.date: 11/05/2019
16+
ms.date: 01/16/2020
1717
ms.author: aschhab
1818

1919
---

articles/service-bus-messaging/service-bus-nodejs-how-to-use-topics-subscriptions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: 'Use Azure Service Bus topics and subscriptions with azure/service-bus Node.js package'
3-
description: 'Quickstart: Learn how to use Service Bus topics and subscriptions in Azure from a Node.js app.'
2+
title: 'Use Azure Service Bus topics with azure/service-bus Node.js package'
3+
description: Learn how to use Service Bus topics and subscriptions in Azure from a Node.js app using the azure/service-bus package.'
44
services: service-bus-messaging
55
documentationcenter: nodejs
66
author: axisc
@@ -13,7 +13,7 @@ ms.workload: na
1313
ms.tgt_pltfrm: na
1414
ms.devlang: nodejs
1515
ms.topic: quickstart
16-
ms.date: 11/05/2019
16+
ms.date: 01/16/2020
1717
ms.author: aschhab
1818

1919
---

articles/service-bus-messaging/service-bus-performance-improvements.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Best practices for improving performance using Azure Service Bus | Microsoft Docs
2+
title: Best practices for improving performance using Azure Service Bus
33
description: Describes how to use Service Bus to optimize performance when exchanging brokered messages.
44
services: service-bus-messaging
55
documentationcenter: na
@@ -9,7 +9,7 @@ editor: spelluru
99

1010
ms.service: service-bus-messaging
1111
ms.topic: article
12-
ms.date: 09/14/2018
12+
ms.date: 01/16/2020
1313
ms.author: aschhab
1414

1515
---

articles/service-bus-messaging/service-bus-queues-topics-subscriptions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ editor: spelluru
99

1010
ms.service: service-bus-messaging
1111
ms.topic: article
12-
ms.date: 09/18/2018
12+
ms.date: 01/16/2020
1313
ms.author: aschhab
1414

1515
---

articles/service-bus-messaging/service-bus-quickstart-portal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
title: Quickstart - Use the Azure portal to create a Service Bus queue | Microsoft Docs
2+
title: Use the Azure portal to create a Service Bus queue
33
description: In this quickstart, you learn how to create a Service Bus queue by using the Azure portal. Then, you use a sample client application to send messages to and receive messages from the queue.
44
services: service-bus-messaging
55
author: spelluru
66

77
ms.service: service-bus-messaging
88
ms.topic: quickstart
99
ms.custom: mvc
10-
ms.date: 09/03/2019
10+
ms.date: 01/16/2020
1111
ms.author: spelluru
1212
# Customer intent: In a retail scenario, how do I update inventory assortment and send a set of messages from the back office to the stores?
1313

articles/service-bus-messaging/service-bus-quickstart-topics-subscriptions-portal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
title: 'Quickstart: Use the Azure portal to create Service Bus topics and subscriptions'
2+
title: Use the Azure portal to create Service Bus topics and subscriptions
33
description: 'Quickstart: In this quickstart, you learn how to create a Service Bus topic and subscriptions to that topic by using the Azure portal.'
44
services: service-bus-messaging
55
author: spelluru
66
manager: timlt
77

88
ms.service: service-bus-messaging
99
ms.topic: quickstart
10-
ms.date: 11/05/2019
10+
ms.date: 01/16/2020
1111
ms.author: spelluru
1212
# Customer intent: In a retail scenario, how do I update inventory assortment and send a set of messages from the back office to the stores?
1313

articles/service-bus-messaging/service-bus-resource-manager-namespace-topic.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 'Quickstart: Create Azure Service Bus namespace topic subscription using Azure Resource Manager template'
2+
title: Create Azure Service Bus namespace topic using a template
33
description: 'Quickstart: Create a Service Bus namespace with topic and subscription using Azure Resource Manager template'
44
services: service-bus-messaging
55
documentationcenter: .net
@@ -13,7 +13,7 @@ ms.devlang: tbd
1313
ms.topic: quickstart
1414
ms.tgt_pltfrm: dotnet
1515
ms.workload: na
16-
ms.date: 11/05/2019
16+
ms.date: 01/16/2020
1717
ms.author: spelluru
1818

1919
---

articles/service-bus-messaging/service-bus-resource-manager-namespace.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Create Service Bus Messaging namespace using Azure Resource Manager template | Microsoft Docs
2+
title: Create an Azure Service Bus namespace using template
33
description: Use Azure Resource Manager template to create a Service Bus Messaging namespace
44
services: service-bus-messaging
55
documentationcenter: .net

0 commit comments

Comments
 (0)