Skip to content

Commit 01634f7

Browse files
committed
Acrolinx
1 parent 4748e9f commit 01634f7

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

azure-local/manage/manage-cluster-registration.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ ms.date: 02/21/2025
1414

1515
[!INCLUDE [azure-local-banner-22h2](../includes/azure-local-banner-22h2.md)]
1616

17-
Depending on your cluster configuration and requirements, you might need to take additional steps after registering your cluster with Azure. This article describes how to manage your cluster registration using Windows Admin Center, PowerShell, or the Azure portal. It also provides answers to the frequently asked questions about cluster registration.
17+
Depending on your cluster configuration and requirements, you might need to take more steps after registering your cluster with Azure. This article describes how to manage your cluster registration using Windows Admin Center, PowerShell, or the Azure portal. It also provides answers to the frequently asked questions about cluster registration.
1818

1919
When you [register your cluster with Azure](../deploy/register-with-azure.md), an Azure Resource Manager resource is created to represent the on-premises Azure Stack HCI cluster. Starting with Azure Stack HCI, version 21H2, registering a cluster automatically creates an Azure Arc of the server resource for each server in the Azure Stack HCI cluster. This Azure Arc integration extends the Azure management plane to Azure Stack HCI. The Azure Arc integration enables periodic syncing of information between the Azure resource and the on-premises clusters.
2020

2121
## View registration and Arc-enabled servers status
2222

2323
# [Windows Admin Center](#tab/windows-admin-center)
2424

25-
When you connect to a cluster using Windows Admin Center, you'll see the dashboard, which displays the Azure Stack HCI registration and Arc-enabled servers status.
25+
When you connect to a cluster using Windows Admin Center, you see the dashboard, which displays the Azure Stack HCI registration and Arc-enabled servers status.
2626

27-
- For Azure Stack HCI registration, **Connected** means that the cluster is already registered with Azure and has successfully synced to the cloud within the last day.
27+
- For Azure Stack HCI registration, **Connected** means that the cluster is already registered with Azure and successfully synced to the cloud within the last day.
2828
- For Arc-enabled servers, **Connected** means that all physical servers are Arc-enabled and can be managed from the Azure portal.
2929

3030
:::image type="content" source="media/manage-cluster-registration/dashboard-connected.png" alt-text="Screenshot that shows the cluster connection status on the Windows Admin Center dashboard." lightbox="media/manage-cluster-registration/dashboard-connected.png":::
@@ -36,11 +36,11 @@ You can get more information by selecting **Azure Arc** from the **Tools** menu
3636
3737
:::image type="content" source="media/manage-cluster-registration/overview-connected.png" alt-text="Screenshot that shows selections for getting Azure Stack HCI registration information." lightbox="media/manage-cluster-registration/overview-connected.png":::
3838

39-
On the **Overview** page, you will find high-level status information about Azure Stack HCI registration and Arc-enabled servers. You can click on either tile to be taken to the individual pages.
39+
The **Overview** page shows high-level status information about Azure Stack HCI registration and Arc-enabled servers. You can click on either tile to be taken to the individual pages.
4040

4141
:::image type="content" source="media/manage-cluster-registration/hci-registration-connected.png" alt-text="Screenshot of status information about registration." lightbox="media/manage-cluster-registration/hci-registration-connected.png":::
4242

43-
On the **Azure Stack HCI registration** page, you can view both the Azure Stack HCI system and server status. This includes the Azure connection status and last Azure sync. You can find **Useful links** to troubleshooting documentation and cluster extensions. You can **Unregister** if needed.
43+
On the **Azure Stack HCI registration** page, you can view both the Azure Stack HCI system and server status. This information includes the Azure connection status and last Azure sync. You can find **Useful links** to troubleshooting documentation and cluster extensions. You can **Unregister** if needed.
4444

4545
:::image type="content" source="media/manage-cluster-registration/arc-enabled-servers-connected.png" alt-text="Screenshot of servers status." lightbox="media/manage-cluster-registration/arc-enabled-servers-connected.png":::
4646

@@ -58,13 +58,13 @@ After the cluster is created, only `RegistrationStatus` shows a `NotYet` status:
5858

5959
:::image type="content" source="media/manage-cluster-registration/2-get-azurestackhci.png" alt-text="Screenshot that shows the Azure registration status after cluster creation." lightbox="media/manage-cluster-registration/2-get-azurestackhci.png":::
6060

61-
You must register an Azure Stack HCI cluster within 30 days of installation, as defined in the Azure Online Services Terms. If you haven't created or joined a cluster after 30 days, `ClusterStatus` will show `OutOfPolicy`. If you haven't registered the cluster after 30 days, `RegistrationStatus` will show `OutOfPolicy`.
61+
You must register an Azure Stack HCI cluster within 30 days of installation, as defined in the Azure Online Services Terms. If you don't create or join a cluster after 30 days, `ClusterStatus` shows `OutOfPolicy`. If you don't register the cluster after 30 days, `RegistrationStatus` shows `OutOfPolicy`.
6262

6363
After the cluster is registered, you can see `ConnectionStatus` and the `LastConnected` time. The `LastConnected` time is usually within the last day unless the cluster is temporarily disconnected from the internet. An Azure Stack HCI cluster can operate fully offline for up to 30 consecutive days.
6464

6565
:::image type="content" source="media/manage-cluster-registration/3-get-azurestackhci.png" alt-text="Screenshot that shows the Azure registration status after registration." lightbox="media/manage-cluster-registration/3-get-azurestackhci.png":::
6666

67-
If you exceed the maximum period of offline operation, `ConnectionStatus` will show `OutOfPolicy`.
67+
If you exceed the maximum period of offline operation, `ConnectionStatus` shows `OutOfPolicy`.
6868

6969
> [!NOTE]
7070
> BIOS\UEFI Firmware configuration must be the same on each HCI cluster node's hardware. Any nodes with different BIOS configurations compared to the majority may show **ConnectionStatus** as **OutOfPolicy**.
@@ -103,14 +103,14 @@ Follow these steps to enable Azure Arc integration:
103103
Install-Module -Name Az.StackHCI
104104
```
105105

106-
1. Rerun the `Register-AzStackHCI` cmdlet and specify your Azure subscription ID, which must be the same ID with which the cluster was originally registered. The `-ComputerName` parameter can be the name of any server in the cluster. This step enables Azure Arc integration on every server in the cluster. It will not affect your current cluster registration with Azure, and you don't need to unregister the cluster first:
106+
1. Rerun the `Register-AzStackHCI` cmdlet and specify your Azure subscription ID, which must be the same ID with which the cluster was originally registered. The `-ComputerName` parameter can be the name of any server in the cluster. This step enables Azure Arc integration on every server in the cluster. It doesn't affect your current cluster registration with Azure, and you don't need to unregister the cluster first:
107107

108108
```PowerShell
109109
Register-AzStackHCI -SubscriptionId "<subscription_ID>" -ComputerName Server1 -Region <region> -TenantId "<tenant_id>"
110110
```
111111

112112
> [!IMPORTANT]
113-
> If the cluster was originally registered using a `-Region`, `-ResourceName`, or `-ResourceGroupName` that's different from the default settings, you must specify those same parameters and values here. Running `Get-AzureStackHCI` will display these values.
113+
> If the cluster was originally registered using a `-Region`, `-ResourceName`, or `-ResourceGroupName` that's different from the default settings, you must specify those same parameters and values here. Running `Get-AzureStackHCI` displays these values.
114114
115115
For failures while enabling Arc, [see the guidance here for troubleshooting](../deploy/troubleshoot-hci-registration.md#registration-completes-successfully-but-azure-arc-connection-in-portal-says-not-installed).
116116

@@ -130,7 +130,7 @@ Follow these steps to upgrade Arc agent on cluster servers:
130130

131131
:::image type="content" source="media/manage-cluster-registration/sconfig-updates.png" alt-text="Sconfig options." lightbox="media/manage-cluster-registration/sconfig-updates.png":::
132132

133-
1. Run `azcmagent version` from PowerShell on each node to verify the Arc agent version.
133+
1. To verify the Arc agent version, run `azcmagent version` from PowerShell on each node.
134134

135135
## Unregister Azure Stack HCI
136136

@@ -177,14 +177,14 @@ Use the [`Unregister-AzStackHCI`](/powershell/module/az.stackhci/unregister-azst
177177
Unregister-AzStackHCI -ComputerName ClusterNode1 -SubscriptionId "<subscription_ID>" -TenantId "<tenant_id>"
178178
```
179179

180-
If the management PC has a GUI, you will get a login prompt, in which you provide the credentials to access the cluster node. If the management PC doesn't have a GUI, use the `-credentials <credentials to log in to cluster nodes>` parameter in the `Unregister-AzStackHCI` cmdlet.
180+
If the management PC has a GUI, you get a login prompt, in which you provide the credentials to access the cluster node. If the management PC doesn't have a GUI, use the `-credentials <credentials to log in to cluster nodes>` parameter in the `Unregister-AzStackHCI` cmdlet.
181181

182182
> [!IMPORTANT]
183-
> If you're unregistering the Azure Stack HCI cluster in Azure China, run the `Unregister-AzStackHCI` cmdlet with these additional parameters:
183+
> If you're unregistering the Azure Stack HCI cluster in Azure China, run the `Unregister-AzStackHCI` cmdlet with these extra parameters:
184184
>
185185
> `-EnvironmentName AzureChinaCloud -Region "ChinaEast2"`
186186
>
187-
> If you're unregistering in Azure Government, use these additional parameters:
187+
> If you're unregistering in Azure Government, use these extra parameters:
188188
>
189189
> `-EnvironmentName AzureUSGovernment -Region "USGovVirginia"`
190190
>
@@ -198,11 +198,11 @@ Use Windows Admin Center or PowerShell to unregister your cluster.
198198

199199
## Clean up after a cluster that was not properly unregistered
200200

201-
If a user destroys an Azure Stack HCI cluster without un-registering it, such as by re-imaging the host servers or deleting virtual cluster nodes, then artifacts will be left over in Azure. These artifacts are harmless and won't incur billing or use resources, but they can clutter the Azure portal. To clean them up, you can manually delete them.
201+
If a user destroys an Azure Stack HCI cluster without un-registering it, such as by re-imaging the host servers or deleting virtual cluster nodes, then artifacts remain in Azure. These artifacts are harmless and won't incur billing or use resources, but they can clutter the Azure portal. To clean them up, you can manually delete them.
202202

203203
To delete the Azure Stack HCI resource, navigate to the resource in the Azure portal and select **Delete** from the action bar. You can get the resource details by running the `Get-AzureStackHCI` cmdlet.
204204

205-
Azure Stack HCI creates two Microsoft Entra applications as part of the registration: **resourceName** and **resourceName.arc**. To delete those, go to **Microsoft Entra ID** > **App Registrations** > **All Applications**. Select **Delete** and confirm.
205+
Azure Stack HCI creates two Microsoft Entra applications as part of the registration: **resourceName** and **resourceName.arc**. To delete those applications, go to **Microsoft Entra ID** > **App Registrations** > **All Applications**. Select **Delete** and confirm.
206206

207207
You can also delete the Azure Stack HCI resource by using PowerShell:
208208

@@ -232,17 +232,17 @@ Find answers to some frequently asked questions:
232232

233233
### How do I use a more restricted custom permissions role?
234234

235-
You can further reduce the permissions required to perform Azure Stack HCI registration as described in [Assign Azure permissions using PowerShell](../deploy/register-with-azure.md#assign-azure-permissions-using-powershell), provided that some of the operations described below are already performed out-of-band by a user having contributor and user access administrator roles.
235+
If some of the operations described as follows are already performed out-of-band by a user having contributor and user access administrator roles, you can further reduce the permissions required to perform Azure Stack HCI registration as described in [Assign Azure permissions using PowerShell](../deploy/register-with-azure.md#assign-azure-permissions-using-powershell).
236236

237-
1. Register the required resource providers. Sign in to the subscription you will use to register the cluster. Under **Settings > Resource Providers**, select the following resource providers and then select **Register**:
237+
1. Register the required resource providers. Sign in to the subscription you use to register the cluster. Under **Settings > Resource Providers**, select the following resource providers and then select **Register**:
238238
- Microsoft.AzureStackHCI
239239
- Microsoft.HybridCompute
240240
- Microsoft.GuestConfiguration
241241
- Microsoft.HybridConnectivity
242242

243-
1. Create the resource groups. Make sure the resource groups into which the Azure Stack HCI resources will be projected are pre-created by a privileged user. For more details, see the [prerequisites](../deploy/register-with-azure.md#prerequisites) section.
243+
1. Create the resource groups. Make sure the resource groups into which the Azure Stack HCI resources are projected are pre-created by a privileged user. For more details, see the [prerequisites](../deploy/register-with-azure.md#prerequisites) section.
244244

245-
Once these two pre-requisites are set up, create a custom role and use it for registration as described below. First, create a JSON file called **customHCIRole.json** with the following content. Make sure to change `<subscriptionID>` to the ID of your Azure subscription. To get your subscription ID, visit the Azure portal, go to **Subscriptions**, then copy/paste your ID from the list:
245+
Once these two pre-requisites are set up, create a custom role and use it for registration as shown here. First, create a JSON file called **customHCIRole.json** with the following content. Make sure to change `<subscriptionID>` to the ID of your Azure subscription. To get your subscription ID, visit the Azure portal, go to **Subscriptions**, then copy/paste your ID from the list:
246246

247247
```json
248248
{
@@ -372,7 +372,7 @@ We do not support resource move for any Azure Stack HCI resources. To change the
372372
- **Sync-AzureStackHCI**:
373373
- Performs billing, licensing, and census sync with Azure.
374374
- The system runs this cmdlet automatically every 12 hours.
375-
- You should only use this cmdlet when a cluster's internet connection has been unavailable for an extended period.
375+
- You should only use this cmdlet when a cluster's internet connection is unavailable for an extended period.
376376
- Do not run this cmdlet immediately after server reboot; let the automatic sync happen. Otherwise, it may result in a bad state.
377377

378378
## Next steps

0 commit comments

Comments
 (0)