Skip to content

Commit 20f5e90

Browse files
committed
minor changes
1 parent ed9fe97 commit 20f5e90

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

articles/sap/workloads/high-availability-guide-suse-pacemaker.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ To create a service principal, do the following:
581581
2. Select **App registrations**.
582582
3. Select **New registration**.
583583
4. Enter a name for the registration, and then select **Accounts in this organization directory only**.
584-
5. For **Application type**, select **Web**, enter a sign-on URL (for example, *<http://localhost>*), and then select **Add**.
584+
5. For **Application type**, select **Web**, enter a sign-on URL (for example, `http://localhost`), and then select **Add**.
585585
The sign-on URL isn't used and can be any valid URL.
586586
6. Select **Certificates and secrets**, and then select **New client secret**.
587587
7. Enter a description for a new key, select **Two years**, and then select **Add**.
@@ -956,39 +956,39 @@ Make sure to assign the custom role to the service principal at all VM (cluster
956956

957957
#### [Managed identity](#tab/msi)
958958

959-
```bash
960-
# replace the bold strings with your subscription ID and resource group of the VM
961-
962-
sudo crm configure primitive rsc_st_azure stonith:fence_azure_arm \
963-
params msi=true subscriptionId="subscription ID" resourceGroup="resource group" \
964-
pcmk_monitor_retries=4 pcmk_action_limit=3 power_timeout=240 pcmk_reboot_timeout=900 pcmk_delay_max=15 pcmk_host_map="prod-cl1-0:prod-cl1-0-vm-name;prod-cl1-1:prod-cl1-1-vm-name" \
965-
op monitor interval=3600 timeout=120
959+
```bash
960+
# replace the bold strings with your subscription ID and resource group of the VM
961+
962+
sudo crm configure primitive rsc_st_azure stonith:fence_azure_arm \
963+
params msi=true subscriptionId="subscription ID" resourceGroup="resource group" \
964+
pcmk_monitor_retries=4 pcmk_action_limit=3 power_timeout=240 pcmk_reboot_timeout=900 pcmk_delay_max=15 pcmk_host_map="prod-cl1-0:prod-cl1-0-vm-name;prod-cl1-1:prod-cl1-1-vm-name" \
965+
op monitor interval=3600 timeout=120
966966
967-
sudo crm configure property stonith-timeout=900
968-
```
967+
sudo crm configure property stonith-timeout=900
968+
```
969969

970970
#### [Service principal](#tab/spn)
971971

972-
```bash
973-
# replace the bold strings with your subscription ID, resource group of the VM, tenant ID, service principal application ID and password
972+
```bash
973+
# replace the bold strings with your subscription ID, resource group of the VM, tenant ID, service principal application ID and password
974974
975-
sudo crm configure primitive rsc_st_azure stonith:fence_azure_arm \
976-
params subscriptionId="subscription ID" resourceGroup="resource group" tenantId="tenant ID" login="application ID" passwd="password" \
977-
pcmk_monitor_retries=4 pcmk_action_limit=3 power_timeout=240 pcmk_reboot_timeout=900 pcmk_delay_max=15 pcmk_host_map="prod-cl1-0:prod-cl1-0-vm-name;prod-cl1-1:prod-cl1-1-vm-name" \
978-
op monitor interval=3600 timeout=120
975+
sudo crm configure primitive rsc_st_azure stonith:fence_azure_arm \
976+
params subscriptionId="subscription ID" resourceGroup="resource group" tenantId="tenant ID" login="application ID" passwd="password" \
977+
pcmk_monitor_retries=4 pcmk_action_limit=3 power_timeout=240 pcmk_reboot_timeout=900 pcmk_delay_max=15 pcmk_host_map="prod-cl1-0:prod-cl1-0-vm-name;prod-cl1-1:prod-cl1-1-vm-name" \
978+
op monitor interval=3600 timeout=120
979979
980-
sudo crm configure property stonith-timeout=900
981-
```
980+
sudo crm configure property stonith-timeout=900
981+
```
982982

983-
---
983+
---
984984

985-
If you're using fencing device, based on service principal configuration, read [Change from SPN to MSI for Pacemaker clusters using Azure fencing](https://techcommunity.microsoft.com/t5/running-sap-applications-on-the/sap-on-azure-high-availability-change-from-spn-to-msi-for/ba-p/3609278) and learn how to convert to managed identity configuration.
985+
If you're using fencing device, based on service principal configuration, read [Change from SPN to MSI for Pacemaker clusters using Azure fencing](https://techcommunity.microsoft.com/t5/running-sap-applications-on-the/sap-on-azure-high-availability-change-from-spn-to-msi-for/ba-p/3609278) and learn how to convert to managed identity configuration.
986986
987-
> [!IMPORTANT]
988-
> The monitoring and fencing operations are deserialized. As a result, if there's a longer-running monitoring operation and simultaneous fencing event, there's no delay to the cluster failover because the monitoring operation is already running.
987+
> [!IMPORTANT]
988+
> The monitoring and fencing operations are deserialized. As a result, if there's a longer-running monitoring operation and simultaneous fencing event, there's no delay to the cluster failover because the monitoring operation is already running.
989989
990-
> [!TIP]
991-
>The Azure fence agent requires outbound connectivity to the public endpoints, as documented, along with possible solutions, in [Public endpoint connectivity for VMs using standard ILB](./high-availability-guide-standard-load-balancer-outbound-connections.md).
990+
> [!TIP]
991+
>The Azure fence agent requires outbound connectivity to the public endpoints, as documented, along with possible solutions, in [Public endpoint connectivity for VMs using standard ILB](./high-availability-guide-standard-load-balancer-outbound-connections.md).
992992
993993
## Configure Pacemaker for Azure scheduled events
994994

0 commit comments

Comments
 (0)