Skip to content

Commit ae11f36

Browse files
committed
Add instructions how to mount as NFS 4.1,update instructions to deactivate ID mapping
1 parent 3df4a4c commit ae11f36

5 files changed

+17
-8
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@ For information on integration of Azure services into SAP components, see:
119119

120120

121121
## Change Log
122+
- 01/10/2020: Changes in [SAP HANA scale-out with standby node on Azure VMs with Azure NetApp Files on SLES](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/sap-hana-scale-out-standby-netapp-files-suse) and in [SAP HANA scale-out with standby node on Azure VMs with Azure NetApp Files on RHEL](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/sap-hana-scale-out-standby-netapp-files-rhel) to add instructions on how to make `nfs4_disable_idmapping` changes permanent.
123+
- 01/10/2020: Changes in [High availability for SAP NetWeaver on Azure VMs on SLES with Azure NetApp Files for SAP applications](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/high-availability-guide-suse-netapp-files) and in [Azure Virtual Machines high availability for SAP NetWeaver on RHEL with Azure NetApp Files for SAP applications](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/high-availability-guide-rhel-netapp-files) to add instructions how to mount Azure NetApp Files NFSv4 volumes.
122124
- 12/23/2019: Release of [High availability for SAP NetWeaver on Azure VMs on SLES multi-SID guide](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/high-availability-guide-suse-multi-sid)
123125
- 12/18/2019: Release of [SAP HANA scale-out with standby node on Azure VMs with Azure NetApp Files on RHEL](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/sap-hana-scale-out-standby-netapp-files-rhel)
124126
- 11/21/2019: Changes in [SAP HANA scale-out with standby node on Azure VMs with Azure NetApp Files on SUSE Linux Enterprise Server](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/sap-hana-scale-out-standby-netapp-files-suse) to simplify the configuration for NFS ID mapping and change the recommended primary network interface to simplify routing.

articles/virtual-machines/workloads/sap/high-availability-guide-rhel-netapp-files.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.service: virtual-machines-windows
1414
ms.topic: article
1515
ms.tgt_pltfrm: vm-windows
1616
ms.workload: infrastructure-services
17-
ms.date: 11/07/2019
17+
ms.date: 01/10/2020
1818
ms.author: radeltch
1919

2020
---
@@ -295,6 +295,8 @@ The instructions in this section are only applicable, if using Azure NetApp File
295295
echo "options nfs nfs4_disable_idmapping=Y" >> /etc/modprobe.d/nfs.conf
296296
</code></pre>`
297297

298+
For more details on how to change `nfs4_disable_idmapping` parameter see https://access.redhat.com/solutions/1749883.
299+
298300
### Create Pacemaker cluster
299301

300302
Follow the steps in [Setting up Pacemaker on Red Hat Enterprise Linux in Azure](high-availability-guide-rhel-pacemaker.md) to create a basic Pacemaker cluster for this (A)SCS server.
@@ -329,9 +331,12 @@ The following items are prefixed with either **[A]** - applicable to all nodes,
329331
Mount temporarily the Azure NetApp Files volume on one of the VMs and create the SAP directories(file paths).
330332
331333
```
332-
#mount temporarily the volume
334+
# mount temporarily the volume
333335
sudo mkdir -p /saptmp
336+
# If using NFSv3
334337
sudo mount -t nfs -o rw,hard,rsize=65536,wsize=65536,vers=3,tcp 192.168.24.5:/sapQAS /saptmp
338+
# If using NFSv4.1
339+
sudo mount -t nfs -o rw,hard,rsize=65536,wsize=65536,vers=4.1,sec=sys,tcp 192.168.24.5:/sapQAS /saptmp
335340
# create the SAP directories
336341
sudo cd /saptmp
337342
sudo mkdir -p sapmntQAS
@@ -462,7 +467,7 @@ The following items are prefixed with either **[A]** - applicable to all nodes,
462467

463468
# If using NFSv4.1
464469
sudo pcs resource create fs_QAS_ASCS Filesystem device='192.168.24.5:/sapQAS/usrsapQASascs' \
465-
directory='/usr/sap/QAS/ASCS00' fstype='nfs' options='sec=sys,vers=4.1'\
470+
directory='/usr/sap/QAS/ASCS00' fstype='nfs' options='sec=sys,vers=4.1' \
466471
--group g-QAS_ASCS
467472

468473
sudo pcs resource create vip_QAS_ASCS IPaddr2 \

articles/virtual-machines/workloads/sap/high-availability-guide-suse-netapp-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.service: virtual-machines-windows
1515
ms.topic: article
1616
ms.tgt_pltfrm: vm-windows
1717
ms.workload: infrastructure-services
18-
ms.date: 11/07/2019
18+
ms.date: 01/10/2020
1919
ms.author: radeltch
2020

2121
---

articles/virtual-machines/workloads/sap/sap-hana-scale-out-standby-netapp-files-rhel.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.service: virtual-machines-windows
1515
ms.topic: article
1616
ms.tgt_pltfrm: vm-windows
1717
ms.workload: infrastructure-services
18-
ms.date: 12/18/2019
18+
ms.date: 01/10/2020
1919
ms.author: radeltch
2020

2121
---
@@ -435,7 +435,9 @@ Configure and prepare your OS by doing the following steps:
435435
echo "Y" > /sys/module/nfs/parameters/nfs4_disable_idmapping
436436
# Make the configuration permanent
437437
echo "options nfs nfs4_disable_idmapping=Y" >> /etc/modprobe.d/nfs.conf
438-
</code></pre>`
438+
</code></pre>
439+
440+
For more details on how to change `nfs4_disable_idmapping` parameter see https://access.redhat.com/solutions/1749883.
439441

440442
6. **[A]** Mount the shared Azure NetApp Files volumes.
441443

articles/virtual-machines/workloads/sap/sap-hana-scale-out-standby-netapp-files-suse.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.service: virtual-machines-windows
1515
ms.topic: article
1616
ms.tgt_pltfrm: vm-windows
1717
ms.workload: infrastructure-services
18-
ms.date: 11/21/2019
18+
ms.date: 01/10/2020
1919
ms.author: radeltch
2020

2121
---
@@ -429,7 +429,7 @@ Configure and prepare your OS by doing the following steps:
429429
echo "Y" > /sys/module/nfs/parameters/nfs4_disable_idmapping
430430
# Make the configuration permanent
431431
echo "options nfs nfs4_disable_idmapping=Y" >> /etc/modprobe.d/nfs.conf
432-
</code></pre>`
432+
</code></pre>
433433

434434
5. **[A]** Create the SAP HANA group and user manually. The IDs for group sapsys and user **hn1**adm must be set to the same IDs, which are provided during the onboarding. (In this example, the IDs are set to **1001**.) If the IDs aren't set correctly, you won't be able to access the volumes. The IDs for group sapsys and user accounts **hn1**adm and sapadm must be the same on all virtual machines.
435435

0 commit comments

Comments
 (0)