@@ -8,7 +8,7 @@ ms.service: sap-on-azure
8
8
ms.subservice : sap-vm-workloads
9
9
ms.topic : article
10
10
ms.workload : infrastructure-services
11
- ms.date : 12/06/2022
11
+ ms.date : 04/25/2023
12
12
ms.author : radeltch
13
13
---
14
14
@@ -261,9 +261,9 @@ The following items are prefixed with either **[A]** - applicable to all nodes,
261
261
# mount temporarily the volume
262
262
sudo mkdir -p /saptmp
263
263
# If using NFSv3
264
- sudo mount -t nfs -o rw,hard,rsize=65536,wsize=65536,vers =3,tcp 192.168.24.5:/sapQAS /saptmp
264
+ sudo mount -t nfs -o rw,hard,rsize=65536,wsize=65536,nfsvers =3,tcp 192.168.24.5:/sapQAS /saptmp
265
265
# If using NFSv4.1
266
- sudo mount -t nfs -o rw,hard,rsize=65536,wsize=65536,vers =4.1,sec=sys,tcp 192.168.24.5:/sapQAS /saptmp
266
+ sudo mount -t nfs -o rw,hard,rsize=65536,wsize=65536,nfsvers =4.1,sec=sys,tcp 192.168.24.5:/sapQAS /saptmp
267
267
# create the SAP directories
268
268
sudo cd /saptmp
269
269
sudo mkdir -p sapmntQAS
@@ -332,19 +332,19 @@ The following items are prefixed with either **[A]** - applicable to all nodes,
332
332
sudo vi /etc/fstab
333
333
334
334
# Add the following lines to fstab, save and exit
335
- 192.168.24.5:/sapQAS/sapmntQAS /sapmnt/QAS nfs rw,hard,rsize=65536,wsize=65536,vers =3
336
- 192.168.24.5:/sapQAS/usrsapQASsys /usr/sap/QAS/SYS nfs rw,hard,rsize=65536,wsize=65536,vers =3
337
- 192.168.24.4:/transSAP /usr/sap/trans nfs rw,hard,rsize=65536,wsize=65536,vers =3
335
+ 192.168.24.5:/sapQAS/sapmntQAS /sapmnt/QAS nfs rw,hard,rsize=65536,wsize=65536,nfsvers =3
336
+ 192.168.24.5:/sapQAS/usrsapQASsys /usr/sap/QAS/SYS nfs rw,hard,rsize=65536,wsize=65536,nfsvers =3
337
+ 192.168.24.4:/transSAP /usr/sap/trans nfs rw,hard,rsize=65536,wsize=65536,nfsvers =3
338
338
```
339
339
340
340
If using NFSv4.1:
341
341
```
342
342
sudo vi /etc/fstab
343
343
344
344
# Add the following lines to fstab, save and exit
345
- 192.168.24.5:/sapQAS/sapmntQAS /sapmnt/QAS nfs rw,hard,rsize=65536,wsize=65536,vers =4.1,sec=sys
346
- 192.168.24.5:/sapQAS/usrsapQASsys /usr/sap/QAS/SYS nfs rw,hard,rsize=65536,wsize=65536,vers =4.1,sec=sys
347
- 192.168.24.4:/transSAP /usr/sap/trans nfs rw,hard,rsize=65536,wsize=65536,vers =4.1,sec=sys
345
+ 192.168.24.5:/sapQAS/sapmntQAS /sapmnt/QAS nfs rw,hard,rsize=65536,wsize=65536,nfsvers =4.1,sec=sys
346
+ 192.168.24.5:/sapQAS/usrsapQASsys /usr/sap/QAS/SYS nfs rw,hard,rsize=65536,wsize=65536,nfsvers =4.1,sec=sys
347
+ 192.168.24.4:/transSAP /usr/sap/trans nfs rw,hard,rsize=65536,wsize=65536,nfsvers =4.1,sec=sys
348
348
```
349
349
350
350
> [!NOTE]
@@ -402,7 +402,7 @@ The following items are prefixed with either **[A]** - applicable to all nodes,
402
402
403
403
# If using NFSv4.1
404
404
sudo pcs resource create fs_QAS_ASCS Filesystem device='192.168.24.5:/sapQAS/usrsapQASascs' \
405
- directory='/usr/sap/QAS/ASCS00' fstype='nfs' force_unmount=safe options='sec=sys,vers =4.1' \
405
+ directory='/usr/sap/QAS/ASCS00' fstype='nfs' force_unmount=safe options='sec=sys,nfsvers =4.1' \
406
406
op start interval=0 timeout=60 op stop interval=0 timeout=120 op monitor interval=200 timeout=105 \
407
407
--group g-QAS_ASCS
408
408
@@ -465,7 +465,7 @@ The following items are prefixed with either **[A]** - applicable to all nodes,
465
465
466
466
# If using NFSv4.1
467
467
sudo pcs resource create fs_QAS_AERS Filesystem device='192.168.24.5:/sapQAS/usrsapQASers' \
468
- directory='/usr/sap/QAS/ERS01' fstype='nfs' force_unmount=safe options='sec=sys,vers =4.1' \
468
+ directory='/usr/sap/QAS/ERS01' fstype='nfs' force_unmount=safe options='sec=sys,nfsvers =4.1' \
469
469
op start interval=0 timeout=60 op stop interval=0 timeout=120 op monitor interval=200 timeout=105 \
470
470
--group g-QAS_AERS
471
471
@@ -784,17 +784,17 @@ The following items are prefixed with either **[A]** - applicable to all nodes,
784
784
sudo vi /etc/fstab
785
785
786
786
# Add the following lines to fstab, save and exit
787
- 192.168.24.5:/sapQAS/sapmntQAS /sapmnt/QAS nfs rw,hard,rsize=65536,wsize=65536,vers =3
788
- 192.168.24.4:/transSAP /usr/sap/trans nfs rw,hard,rsize=65536,wsize=65536,vers =3
787
+ 192.168.24.5:/sapQAS/sapmntQAS /sapmnt/QAS nfs rw,hard,rsize=65536,wsize=65536,nfsvers =3
788
+ 192.168.24.4:/transSAP /usr/sap/trans nfs rw,hard,rsize=65536,wsize=65536,nfsvers =3
789
789
```
790
790
791
791
If using NFSv4.1:
792
792
```
793
793
sudo vi /etc/fstab
794
794
795
795
# Add the following lines to fstab, save and exit
796
- 192.168.24.5:/sapQAS/sapmntQAS /sapmnt/QAS nfs rw,hard,rsize=65536,wsize=65536,vers =4.1,sec=sys
797
- 192.168.24.4:/transSAP /usr/sap/trans nfs rw,hard,rsize=65536,wsize=65536,vers =4.1,sec=sys
796
+ 192.168.24.5:/sapQAS/sapmntQAS /sapmnt/QAS nfs rw,hard,rsize=65536,wsize=65536,nfsvers =4.1,sec=sys
797
+ 192.168.24.4:/transSAP /usr/sap/trans nfs rw,hard,rsize=65536,wsize=65536,nfsvers =4.1,sec=sys
798
798
```
799
799
800
800
Mount the new shares
@@ -811,7 +811,7 @@ The following items are prefixed with either **[A]** - applicable to all nodes,
811
811
812
812
sudo vi /etc/fstab
813
813
# Add the following line to fstab
814
- 92.168.24.5:/sapQAS/usrsapQASpas /usr/sap/QAS/D02 nfs rw,hard,rsize=65536,wsize=65536,vers =3
814
+ 92.168.24.5:/sapQAS/usrsapQASpas /usr/sap/QAS/D02 nfs rw,hard,rsize=65536,wsize=65536,nfsvers =3
815
815
816
816
# Mount
817
817
sudo mount -a
@@ -824,7 +824,7 @@ The following items are prefixed with either **[A]** - applicable to all nodes,
824
824
825
825
sudo vi /etc/fstab
826
826
# Add the following line to fstab
827
- 92.168.24.5:/sapQAS/usrsapQASpas /usr/sap/QAS/D02 nfs rw,hard,rsize=65536,wsize=65536,vers =4.1,sec=sys
827
+ 92.168.24.5:/sapQAS/usrsapQASpas /usr/sap/QAS/D02 nfs rw,hard,rsize=65536,wsize=65536,nfsvers =4.1,sec=sys
828
828
829
829
# Mount
830
830
sudo mount -a
@@ -838,7 +838,7 @@ The following items are prefixed with either **[A]** - applicable to all nodes,
838
838
839
839
sudo vi /etc/fstab
840
840
# Add the following line to fstab
841
- 92.168.24.5:/sapQAS/usrsapQASaas /usr/sap/QAS/D03 nfs rw,hard,rsize=65536,wsize=65536,vers =3
841
+ 92.168.24.5:/sapQAS/usrsapQASaas /usr/sap/QAS/D03 nfs rw,hard,rsize=65536,wsize=65536,nfsvers =3
842
842
843
843
# Mount
844
844
sudo mount -a
@@ -851,7 +851,7 @@ The following items are prefixed with either **[A]** - applicable to all nodes,
851
851
852
852
sudo vi /etc/fstab
853
853
# Add the following line to fstab
854
- 92.168.24.5:/sapQAS/usrsapQASaas /usr/sap/QAS/D03 nfs rw,hard,rsize=65536,wsize=65536,vers =4.1,sec=sys
854
+ 92.168.24.5:/sapQAS/usrsapQASaas /usr/sap/QAS/D03 nfs rw,hard,rsize=65536,wsize=65536,nfsvers =4.1,sec=sys
855
855
856
856
# Mount
857
857
sudo mount -a
0 commit comments