Skip to content

Commit d6c6263

Browse files
committed
Update in SUSE simple mount document to create SAPStartSrv resource
1 parent 872c34c commit d6c6263

File tree

1 file changed

+27
-14
lines changed

1 file changed

+27
-14
lines changed

articles/sap/workloads/high-availability-guide-suse-nfs-simple-mount.md

Lines changed: 27 additions & 14 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: tutorial
1010
ms.custom: devx-track-azurecli, devx-track-azurepowershell, linux-related-content
11-
ms.date: 02/05/2024
11+
ms.date: 05/06/2024
1212
ms.author: radeltch
1313
---
1414

@@ -641,20 +641,39 @@ The instructions in this section are applicable only if you're using Azure NetAp
641641
sudo systemctl enable sappong
642642
```
643643
644-
10. **[1]** Create the SAP cluster resources.
644+
10. **[1]** Create `SAPStartSrv` resource for ASCS and ERS by creating a file and then load the file.
645645
646-
Depending on whether you are running an ENSA1 or ENSA2 system, select respective tab to define the resources. SAP introduced support for [ENSA2](https://help.sap.com/docs/ABAP_PLATFORM_NEW/cff8531bc1d9416d91bb6781e628d4e0/6d655c383abf4c129b0e5c8683e7ecd8.html), including replication, in SAP NetWeaver 7.52. Starting with ABAP Platform 1809, ENSA2 is installed by default. For ENSA2 support, see SAP Note [2630416](https://launchpad.support.sap.com/#/notes/2630416).
646+
```bash
647+
vi crm_sapstartsrv.txt
648+
```
647649
648-
#### [ENSA1](#tab/ensa1)
650+
Enter below primitive in `crm_sapstartsrv.txt` file and save
649651
650652
```bash
651-
sudo crm configure property maintenance-mode="true"
652-
653-
sudo crm configure primitive rsc_sapstartsrv_NW1_ASCS00 ocf:suse:SAPStartSrv \
653+
primitive rsc_sapstartsrv_NW1_ASCS00 ocf:suse:SAPStartSrv \
654654
params InstanceName=NW1_ASCS00_sapascs
655655
656-
sudo crm configure primitive rsc_sapstartsrv_NW1_ERS01 ocf:suse:SAPStartSrv \
656+
primitive rsc_sapstartsrv_NW1_ERS01 ocf:suse:SAPStartSrv \
657657
params InstanceName=NW1_ERS01_sapers
658+
```
659+
660+
Load the file using below commmand.
661+
662+
```bash
663+
sudo crm configure load update crm_sapstartsrv.txt
664+
```
665+
666+
> [!NOTE]
667+
> If you’ve set up a SAPStartSrv resource using the "crm configure primitive…" command on crmsh version 4.4.0+20220708.6ed6b56f-150400.3.3.1 or later, it’s important to review the configuration of the SAPStartSrv resource primitives. If a monitor operation is present, it should be removed. While SUSE also suggests removing the start and stop operations, but these are not as crucial as the monitor operation. For more information, see [recent changes to crmsh package can result in unsupported configuration of SAPStartSrv resource Agent in a SAP NetWeaver HA cluster](https://www.suse.com/support/kb/doc/?id=000021423).
668+
669+
11. **[1]** Create the SAP cluster resources.
670+
671+
Depending on whether you are running an ENSA1 or ENSA2 system, select respective tab to define the resources. SAP introduced support for [ENSA2](https://help.sap.com/docs/ABAP_PLATFORM_NEW/cff8531bc1d9416d91bb6781e628d4e0/6d655c383abf4c129b0e5c8683e7ecd8.html), including replication, in SAP NetWeaver 7.52. Starting with ABAP Platform 1809, ENSA2 is installed by default. For ENSA2 support, see SAP Note [2630416](https://launchpad.support.sap.com/#/notes/2630416).
672+
673+
#### [ENSA1](#tab/ensa1)
674+
675+
```bash
676+
sudo crm configure property maintenance-mode="true"
658677
659678
# If you're using NFS on Azure Files or NFSv3 on Azure NetApp Files:
660679
sudo crm configure primitive rsc_sap_NW1_ASCS00 SAPInstance \
@@ -710,12 +729,6 @@ The instructions in this section are applicable only if you're using Azure NetAp
710729
sudo crm configure property maintenance-mode="true"
711730
712731
sudo crm configure property priority-fencing-delay=30
713-
714-
sudo crm configure primitive rsc_sapstartsrv_NW1_ASCS00 ocf:suse:SAPStartSrv \
715-
params InstanceName=NW1_ASCS00_sapascs
716-
717-
sudo crm configure primitive rsc_sapstartsrv_NW1_ERS01 ocf:suse:SAPStartSrv \
718-
params InstanceName=NW1_ERS01_sapers
719732
720733
# If you're using NFS on Azure Files or NFSv3 on Azure NetApp Files:
721734
sudo crm configure primitive rsc_sap_NW1_ASCS00 SAPInstance \

0 commit comments

Comments
 (0)