Skip to content

Commit cff0df4

Browse files
Merge pull request #271540 from dennispadia/dp-hanatestcaseupdate
Minor changes in HANA test case and typo in SLES pacemaker document
2 parents 3a6cef2 + 76c49a9 commit cff0df4

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

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

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.service: sap-on-azure
88
ms.subservice: sap-vm-workloads
99
ms.topic: article
1010
ms.custom: devx-track-azurepowershell, linux-related-content
11-
ms.date: 02/08/2024
11+
ms.date: 04/08/2024
1212
ms.author: radeltch
1313
---
1414

@@ -342,7 +342,7 @@ Run the following commands on the nodes of the new cluster that you want to crea
342342
# lrwxrwxrwx 1 root root 9 Aug 9 13:32 /dev/disk/by-id/scsi-SLIO-ORG_sbdnfs_f88f30e7-c968-4678-bc87-fe7bfcbdb625 -> ../../sdf
343343
```
344344

345-
The command lists three device IDs for every SBD device. We recommend using the ID that starts with scsi-1. In the preceding example, the IDs are:
345+
The command lists three device IDs for every SBD device. We recommend using the ID that starts with scsi-3. In the preceding example, the IDs are:
346346

347347
- **/dev/disk/by-id/scsi-36001405afb0ba8d3a3c413b8cc2cca03**
348348
- **/dev/disk/by-id/scsi-360014053fe4da371a5a4bb69a419a4df**
@@ -701,11 +701,10 @@ Make sure to assign the custom role to the service principal at all VM (cluster
701701
702702
5. **[A]** Check the *cloud-netconfig-azure* package version.
703703
704-
705704
Check the installed version of the *cloud-netconfig-azure* package by running **zypper info cloud-netconfig-azure**. If the version is earlier than 1.3, we recommend that you update the *cloud-netconfig-azure* package to the latest available version.
706705
707-
> [!TIP]
708-
> If the version in your environment is 1.3 or later, it's no longer necessary to suppress the management of network interfaces by the cloud network plug-in.
706+
> [!TIP]
707+
> If the version in your environment is 1.3 or later, it's no longer necessary to suppress the management of network interfaces by the cloud network plug-in.
709708

710709
**Only if the version of cloud-netconfig-azure is lower than 1.3**, change the configuration file for the network interface as shown in the following code to prevent the cloud network plug-in from removing the virtual IP address (Pacemaker must control the assignment). For more information, see [SUSE KB 7023633](https://www.suse.com/support/kb/doc/?id=7023633).
711710

@@ -761,7 +760,7 @@ Make sure to assign the custom role to the service principal at all VM (cluster
761760
```
762761
763762
> [!IMPORTANT]
764-
> The installed version of the *fence-agents* package must be 4.4.0 or later to benefit from the faster failover times with the Azure fence agent, when a cluster node is fenced. If you're running an earlier version, we recommend that you update the package.
763+
> The installed version of the *fence-agents* package must be 4.4.0 or later to benefit from the faster failover times with the Azure fence agent, when a cluster node is fenced. If you're running an earlier version, we recommend that you update the package.
765764

766765
> [!IMPORTANT]
767766
> If using managed identity, the installed version of the *fence-agents* package must be -
@@ -947,7 +946,6 @@ Make sure to assign the custom role to the service principal at all VM (cluster
947946
> [!NOTE]
948947
> The 'pcmk_host_map' option is required in the command only if the hostnames and the Azure VM names are *not* identical. Specify the mapping in the format *hostname:vm-name*.
949948

950-
951949
#### [Managed identity](#tab/msi)
952950

953951
```bash

articles/sap/workloads/sap-hana-high-availability-rhel.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ ms.service: sap-on-azure
88
ms.subservice: sap-vm-workloads
99
ms.topic: article
1010
ms.custom: devx-track-python, devx-track-azurecli, devx-track-azurepowershell, linux-related-content
11-
ms.date: 01/22/2024
11+
ms.date: 04/08/2024
1212
ms.author: radeltch
1313
---
14+
1415
# High availability of SAP HANA on Azure VMs on Red Hat Enterprise Linux
1516

1617
[dbms-guide]:dbms-guide-general.md
@@ -760,7 +761,7 @@ pcs resource move SAPHana_HN1_03-master
760761
pcs resource move SAPHana_HN1_03-clone --master
761762
```
762763
763-
If you set `AUTOMATED_REGISTER="false"`, this command should migrate the SAP HANA master node and the group that contains the virtual IP address to `hn1-db-1`.
764+
The cluster would migrate the SAP HANA master node and the group containing virtual IP address to `hn1-db-1`.
764765
765766
After the migration is done, the `sudo pcs status` output looks like:
766767
@@ -775,7 +776,7 @@ Resource Group: g_ip_HN1_03
775776
vip_HN1_03 (ocf::heartbeat:IPaddr2): Started hn1-db-1
776777
```
777778
778-
The SAP HANA resource on `hn1-db-0` is stopped. In this case, configure the HANA instance as secondary by running these commands, as **hn1adm**:
779+
With `AUTOMATED_REGISTER="false"`, the cluster would not restart the failed HANA database or register it against the new primary on `hn1-db-0`. In this case, configure the HANA instance as secondary by running these commands, as **hn1adm**:
779780
780781
```bash
781782
sapcontrol -nr 03 -function StopWait 600 10

articles/sap/workloads/sap-hana-high-availability.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: sap-on-azure
77
ms.subservice: sap-vm-workloads
88
ms.topic: article
99
ms.custom: devx-track-azurecli, devx-track-azurepowershell, linux-related-content
10-
ms.date: 04/02/2024
10+
ms.date: 04/08/2024
1111
ms.author: radeltch
1212
---
1313
# High availability for SAP HANA on Azure VMs on SUSE Linux Enterprise Server
@@ -775,7 +775,7 @@ You can migrate the SAP HANA master node by running the following command:
775775
crm resource move msl_SAPHana_<HANA SID>_HDB<instance number> hn1-db-1 force
776776
```
777777
778-
If you set `AUTOMATED_REGISTER="false"`, this sequence of commands migrates the SAP HANA master node and the group that contains the virtual IP address to `hn1-db-1`.
778+
The cluster would migrate the SAP HANA master node and the group containing virtual IP address to `hn1-db-1`.
779779
780780
When the migration is finished, the `crm_mon -r` output looks like this example:
781781
@@ -797,7 +797,7 @@ Failed Actions:
797797
last-rc-change='Mon Aug 13 11:31:37 2018', queued=0ms, exec=2095ms
798798
```
799799
800-
The SAP HANA resource on `hn1-db-0` fails to start as secondary. In this case, configure the HANA instance as secondary by running this command:
800+
With `AUTOMATED_REGISTER="false"`, the cluster would not restart the failed HANA database or register it against the new primary on `hn1-db-0`. In this case, configure the HANA instance as secondary by running this command:
801801
802802
```bash
803803
su - <hana sid>adm

0 commit comments

Comments
 (0)