Skip to content

Commit 4931415

Browse files
Merge pull request #212651 from rdeltcheva/sapha-smp-1
Minor fixes based on feedback
2 parents d99da5c + 411b987 commit 4931415

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

articles/virtual-machines/workloads/sap/get-started.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.assetid: ad8e5c75-0cf6-4564-ae62-ea1246b4e5f2
1313
ms.topic: article
1414
ms.tgt_pltfrm: vm-linux
1515
ms.workload: infrastructure-services
16-
ms.date: 09/14/2022
16+
ms.date: 09/27/2022
1717
ms.author: juergent
1818
ms.custom: H1Hack27Feb2017
1919

@@ -66,6 +66,7 @@ In the SAP workload documentation space, you can find the following areas:
6666

6767
## Change Log
6868

69+
- September 27, 2022: Minor changes in [HA for SAP ASCS/ERS with NFS simple mount](./high-availability-guide-suse-nfs-simple-mount.md) on SLES 15 for SAP Applications to adjust mount instructions
6970
- September 14, 2022 Release of updated SAP on Oracle guide with new and updated content [Azure Virtual Machines Oracle DBMS deployment for SAP workload](./dbms_guide_oracle.md)
7071
- September 8, 2022: Change in [SAP HANA scale-out HSR with Pacemaker on Azure VMs on SLES](./sap-hana-high-availability-scale-out-hsr-suse.md) to add instructions for deploying /hana/shared (only) on NFS on Azure Files
7172
- September 6, 2022: Add managed identity for pacemaker fence agent [Set up Pacemaker on SUSE Linux Enterprise Server (SLES) in Azure](high-availability-guide-suse-pacemaker.md) on SLES and [Setting up Pacemaker on RHEL in Azure](high-availability-guide-rhel-pacemaker.md) RHEL

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.service: virtual-machines-sap
1313
ms.topic: tutorial
1414
ms.tgt_pltfrm: vm-windows
1515
ms.workload: infrastructure-services
16-
ms.date: 08/05/2022
16+
ms.date: 09/27/2022
1717
ms.author: radeltch
1818

1919
---
@@ -268,10 +268,10 @@ When you plan your deployment with NFS on Azure Files, consider the following im
268268
1. Delegate a subnet to Azure NetApp Files, as described in [these instructions](../../../azure-netapp-files/azure-netapp-files-delegate-subnet.md).
269269
1. Deploy Azure NetApp Files volumes by following [these instructions](../../../azure-netapp-files/azure-netapp-files-create-volumes.md). Deploy the volumes in the designated Azure NetApp Files [subnet](/rest/api/virtualnetwork/subnets). The IP addresses of the Azure NetApp volumes are assigned automatically.
270270

271-
Keep in mind that the Azure NetApp Files resources and the Azure VMs must be in the same Azure virtual network or in peered Azure virtual networks. This example uses two Azure NetApp Files volumes: `sapNW1` and `trans`. The file paths that are mounted to the corresponding mount points are:
271+
Keep in mind that the Azure NetApp Files resources and the Azure VMs must be in the same Azure virtual network or in peered Azure virtual networks. This example uses two Azure NetApp Files volumes: `sapnw1` and `trans`. The file paths that are mounted to the corresponding mount points are:
272272

273-
- Volume `sapNW1` (`nfs://10.27.1.5/usrsapnw1/sapmntNW1`)
274-
- Volume `sapNW1` (`nfs://10.27.1.5/usrsapnw1/usrsapNW1`)
273+
- Volume `sapnw1` (`nfs://10.27.1.5/sapnw1/sapmntNW1`)
274+
- Volume `sapnw1` (`nfs://10.27.1.5/sapnw1/usrsapNW1`)
275275
- Volume `trans` (`nfs://10.27.1.5/trans`)
276276

277277

@@ -391,7 +391,7 @@ The following items are prefixed with:
391391
```bash
392392
# Temporarily mount the volume.
393393
sudo mkdir -p /saptmp
394-
sudo mount -t nfs sapnfs.file.core.windows.net:/sapnfsafs/sapnw1 /saptmp -o vers=4,minorversion=1,sec=sys
394+
sudo mount -t nfs sapnfsafs.file.core.windows.net:/sapnfsafs/sapnw1 /saptmp -o vers=4,minorversion=1,sec=sys
395395
# Create the SAP directories.
396396
sudo cd /saptmp
397397
sudo mkdir -p sapmntNW1
@@ -455,7 +455,7 @@ The instructions in this section are applicable only if you're using Azure NetAp
455455
cat /sys/module/nfs/parameters/nfs4_disable_idmapping
456456
# If you need to set nfs4_disable_idmapping to Y:
457457
mkdir /mnt/tmp
458-
mount 10.27.1.5:/sapmnt/<b>qas</b> /mnt/tmp
458+
mount 10.27.1.5:/sapnw1 /mnt/tmp
459459
umount /mnt/tmp
460460
echo "Y" > /sys/module/nfs/parameters/nfs4_disable_idmapping
461461
# Make the configuration permanent.

0 commit comments

Comments
 (0)