You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-signalr/includes/signalr-quickstart-create-instance.md
+25-27Lines changed: 25 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,34 +4,32 @@ description: include file
4
4
author: vicancy
5
5
ms.service: signalr
6
6
ms.topic: include
7
-
ms.date: 09/14/2018
7
+
ms.date: 03/10/2022
8
8
ms.author: lianwei
9
9
ms.custom: include file
10
10
---
11
-
## Create an Azure SignalR Service instance
12
11
13
-
Your application will connect to a SignalR Service instance in Azure.
14
-
15
-
1. Select the New button found on the upper left-hand corner of the Azure portal. In the New screen, type *SignalR Service* in the search box and press enter.
16
-
17
-

18
-
19
-
1. Select **SignalR Service** from the search results, then select **Create**.
|**Resource name**| Globally unique name | Name that identifies your new SignalR Service instance. Valid characters are `a-z`, `0-9`, and `-`. |
26
-
|**Subscription**| Your subscription | The subscription under which this new SignalR Service instance is created. |
27
-
|**[Resource Group](../../azure-resource-manager/management/overview.md)**| myResourceGroup | Name for the new resource group in which to create your SignalR Service instance. |
28
-
|**Location**| West US | Choose a [region](https://azure.microsoft.com/regions/) near you. |
29
-
|**Pricing tier**| Free | Try Azure SignalR Service for free. |
30
-
|**Unit count**| Not applicable | Unit count specifies how many connections your SignalR Service instance can accept. It is only configurable in the Standard tier. |
31
-
|**Service mode**| Serverless | For use with Azure Functions or REST API. |
32
-
33
-

34
-
35
-
1. Select **Create** to start deploying the SignalR Service instance.
36
-
37
-
1. After the instance is deployed, open it in the portal and locate its Settings page. Change the Service Mode setting to *Serverless* only if you are using Azure SignalR Service through Azure Functions binding or REST API. Leave it in *Classic* or *Default* otherwise.
12
+
In this section, you'll create a basic Azure SignalR instance to use for your app. The following steps use the Azure portal to create a new instance, but you can also use the Azure CLI. For more information, see the [**az signalr create**](/cli/azure/signalr?view=azure-cli-latest#az-signalr-create&preserve-view=true) command in the [Azure SignalR Service CLI Reference](/cli/azure/service-page/azure%20signalr?view=azure-cli-latest&preserve-view=true).
13
+
14
+
1. Sign in to the [Azure portal](https://portal.azure.com).
15
+
1. In the upper-left side of the page, select **+ Create a resource**.
16
+
1. On the **Create a resource** page, in the **Search services and marketplace** text box, enter **signalr** and then select **SignalR Service** from the list.
17
+
1. On the **SignalR Service** page, select **Create**.
18
+
1. On the **Basics** tab, you'll enter the essential information for your new SignalR Service instance. Enter the following values:
19
+
20
+
| Field | Suggested Value | Description |
21
+
| --- | --- | --- |
22
+
|**Subscription**| Choose your subscription | Select the subscription you want to use to create a new SignalR Service instance. |
23
+
|**Resource group**| Create a resource group named *SignalRTestResources*|Select or create a resource group for your SignalR resource. It's useful to create a new resource group for this tutorial instead of using an existing resource group. To free resources after completing the tutorial, delete the resource group. <br /><br /> Deleting a resource group also deletes all of the resources that belong to the group. This action can't be undone. Before you delete a resource group, make certain that it doesn't contain resources you want to keep.<br /><br />For more information, see [Using resource groups to manage your Azure resources](../../azure-resource-manager/management/overview.md).|
24
+
|**Resource name**|*testsignalr*| Enter a unique resource name to use for the SignalR resource. If *testsignalr* has already been used in your region, add a digit or character until the name is unique. <br /><br />The name must be a string of 1 to 63 characters and contain only numbers, letters, and the hyphen (`-`) character. The name can't start or end with the hyphen character, and consecutive hyphen characters aren't valid.|
25
+
|**Region**| Choose your region | Select the appropriate region for your new SignalR Service instance.<br /><br />Azure SignalR Service isn't currently available in all regions. For more information, see [Azure SignalR Service region availability](https://azure.microsoft.com/global-infrastructure/services/?products=signalr-service)|
26
+
|**Pricing tier**| Select **Change** and then choose **Free (Dev/Test Only)**. Choose **Select** to confirm your choice of pricing tier.| Azure SignalR Service has three pricing tiers: Free, Standard, and Premium. Tutorials use the **Free** tier, unless noted otherwise in the prerequisites.<br /><br />For more information about the functionality differences between tiers and pricing, see [Azure SignalR Service pricing](https://azure.microsoft.com/pricing/details/signalr-service/)|
27
+
|**Service mode**| Choose the appropriate service mode for this tutorial | Use **Default** for ASP.NET. Use **Serverless** for Azure Functions or REST API.<br /><br /> **Classic** mode isn't used in the Azure SignalR tutorials.<br /><br />For more information, see [Service mode in Azure SignalR Service](../concept-service-mode.md).|
28
+
29
+
You don't need to change the settings on the **Networking** and **Tags** tabs for the SignalR tutorials.
30
+
31
+
6. Select the **Review + create** button at the bottom of the **Basics** tab.
32
+
1. On the **Review + create** tab, review the values and then select **Create**. It will take a few moments for deployment to complete.
33
+
1. When the deployment is complete, select the **Go to resource** button.
34
+
1. On the SignalR resource screen, select **Keys** from the menu on the left, under **Settings**.
35
+
1. Copy the **Connection string** for the primary key. You'll need this connection string to configure your app later in this tutorial.
0 commit comments