Skip to content

Commit 071ba9c

Browse files
committed
RHEL fast_stop=no changes
1 parent ed38a4c commit 071ba9c

5 files changed

+25
-20
lines changed

articles/sap/workloads/high-availability-guide-rhel-multi-sid.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ Before you begin, refer to the following SAP Notes and papers:
8686
* Azure-specific RHEL documentation:
8787
* [Support Policies for RHEL High Availability Clusters - Microsoft Azure Virtual Machines as Cluster Members](https://access.redhat.com/articles/3131341)
8888
* [Installing and Configuring a Red Hat Enterprise Linux 7.4 (and later) High-Availability Cluster on Microsoft Azure](https://access.redhat.com/articles/3252491)
89+
* [What is the fast_stop option for a Filesystem resource in a Pacemaker cluster?] (https://access.redhat.com/solutions/4801371)
8990
* [NetApp SAP Applications on Microsoft Azure using Azure NetApp Files][anf-sap-applications-azure]
9091

9192
## Overview
@@ -209,7 +210,7 @@ This article assumes that:
209210

210211
```cmd
211212
sudo pcs resource create fs_NW2_ASCS Filesystem device='10.42.0.4:/sapMSIDR/usrsapNW2ascs' \
212-
directory='/usr/sap/NW2/ASCS10' fstype='nfs' force_unmount=safe \
213+
directory='/usr/sap/NW2/ASCS10' fstype='nfs' force_unmount=safe fast_stop=no \
213214
op start interval=0 timeout=60 op stop interval=0 timeout=120 op monitor interval=200 timeout=40 \
214215
--group g-NW2_ASCS
215216
@@ -221,7 +222,7 @@ This article assumes that:
221222
--group g-NW2_ASCS
222223
223224
sudo pcs resource create fs_NW3_ASCS Filesystem device='10.42.0.4:/sapMSIDR/usrsapNW3ascs' \
224-
directory='/usr/sap/NW3/ASCS20' fstype='nfs' force_unmount=safe \
225+
directory='/usr/sap/NW3/ASCS20' fstype='nfs' force_unmount=safe fast_stop=no \
225226
op start interval=0 timeout=60 op stop interval=0 timeout=120 op monitor interval=200 timeout=40 \
226227
--group g-NW3_ASCS
227228
@@ -253,7 +254,7 @@ This article assumes that:
253254
254255
```cmd
255256
sudo pcs resource create fs_NW2_AERS Filesystem device='10.42.0.4:/sapMSIDR/usrsapNW2ers' \
256-
directory='/usr/sap/NW2/ERS12' fstype='nfs' force_unmount=safe \
257+
directory='/usr/sap/NW2/ERS12' fstype='nfs' force_unmount=safe fast_stop=no \
257258
op start interval=0 timeout=60 op stop interval=0 timeout=120 op monitor interval=200 timeout=40 \
258259
--group g-NW2_AERS
259260
@@ -265,7 +266,7 @@ This article assumes that:
265266
--group g-NW2_AERS
266267
267268
sudo pcs resource create fs_NW3_AERS Filesystem device='10.42.0.4:/sapMSIDR/usrsapNW3ers' \
268-
directory='/usr/sap/NW3/ERS22' fstype='nfs' force_unmount=safe \
269+
directory='/usr/sap/NW3/ERS22' fstype='nfs' force_unmount=safe fast_stop=no \
269270
op start interval=0 timeout=60 op stop interval=0 timeout=120 op monitor interval=200 timeout=40 \
270271
--group g-NW3_AERS
271272

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ Read the following SAP Notes and papers first:
6969
* Azure-specific RHEL documentation:
7070
* [Support Policies for RHEL High Availability Clusters - Microsoft Azure Virtual Machines as Cluster Members](https://access.redhat.com/articles/3131341)
7171
* [Installing and Configuring a Red Hat Enterprise Linux 7.4 (and later) High-Availability Cluster on Microsoft Azure](https://access.redhat.com/articles/3252491)
72+
* [What is the fast_stop option for a Filesystem resource in a Pacemaker cluster?] (https://access.redhat.com/solutions/4801371)
7273
* [NetApp SAP Applications on Microsoft Azure using Azure NetApp Files][anf-sap-applications-azure]
7374
* [NetApp NFS Best Practices](https://www.netapp.com/media/10720-tr-4067.pdf)
7475

@@ -385,13 +386,13 @@ The following items are prefixed with either:
385386
386387
# If using NFSv3
387388
sudo pcs resource create fs_QAS_ASCS Filesystem device='192.168.24.5:/sapQAS/usrsapQASascs' \
388-
directory='/usr/sap/QAS/ASCS00' fstype='nfs' force_unmount=safe \
389+
directory='/usr/sap/QAS/ASCS00' fstype='nfs' force_unmount=safe fast_stop=no \
389390
op start interval=0 timeout=60 op stop interval=0 timeout=120 op monitor interval=200 timeout=40 \
390391
--group g-QAS_ASCS
391392
392393
# If using NFSv4.1
393394
sudo pcs resource create fs_QAS_ASCS Filesystem device='192.168.24.5:/sapQAS/usrsapQASascs' \
394-
directory='/usr/sap/QAS/ASCS00' fstype='nfs' force_unmount=safe options='sec=sys,nfsvers=4.1' \
395+
directory='/usr/sap/QAS/ASCS00' fstype='nfs' force_unmount=safe options='sec=sys,nfsvers=4.1' fast_stop=no \
395396
op start interval=0 timeout=60 op stop interval=0 timeout=120 op monitor interval=200 timeout=105 \
396397
--group g-QAS_ASCS
397398
@@ -448,13 +449,13 @@ The following items are prefixed with either:
448449
449450
# If using NFSv3
450451
sudo pcs resource create fs_QAS_AERS Filesystem device='192.168.24.5:/sapQAS/usrsapQASers' \
451-
directory='/usr/sap/QAS/ERS01' fstype='nfs' force_unmount=safe \
452+
directory='/usr/sap/QAS/ERS01' fstype='nfs' force_unmount=safe fast_stop=no \
452453
op start interval=0 timeout=60 op stop interval=0 timeout=120 op monitor interval=200 timeout=40 \
453454
--group g-QAS_AERS
454455
455456
# If using NFSv4.1
456457
sudo pcs resource create fs_QAS_AERS Filesystem device='192.168.24.5:/sapQAS/usrsapQASers' \
457-
directory='/usr/sap/QAS/ERS01' fstype='nfs' force_unmount=safe options='sec=sys,nfsvers=4.1' \
458+
directory='/usr/sap/QAS/ERS01' fstype='nfs' force_unmount=safe options='sec=sys,nfsvers=4.1' fast_stop=no \
458459
op start interval=0 timeout=60 op stop interval=0 timeout=120 op monitor interval=200 timeout=105 \
459460
--group g-QAS_AERS
460461

articles/sap/workloads/high-availability-guide-rhel-nfs-azure-files.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ This article describes how to deploy and configure virtual machines (VMs), insta
6767
* Azure-specific RHEL documentation:
6868
* [Support Policies for RHEL High Availability Clusters - Microsoft Azure Virtual Machines as Cluster Members](https://access.redhat.com/articles/3131341)
6969
* [Installing and Configuring a Red Hat Enterprise Linux 7.4 (and later) High-Availability Cluster on Microsoft Azure](https://access.redhat.com/articles/3252491)
70+
* [What is the fast_stop option for a Filesystem resource in a Pacemaker cluster?] (https://access.redhat.com/solutions/4801371)
7071

7172
## Overview
7273

@@ -341,7 +342,7 @@ The following items are prefixed with:
341342
342343
sudo pcs resource create fs_NW1_ASCS Filesystem device='sapnfs.file.core.windows.net:/sapnfsafs/sapnw1/usrsapNW1ascs' \
343344
directory='/usr/sap/NW1/ASCS00' fstype='nfs' force_unmount=safe options='noresvport,vers=4,minorversion=1,sec=sys' \
344-
op start interval=0 timeout=60 op stop interval=0 timeout=120 op monitor interval=200 timeout=40 \
345+
fast_stop=no op start interval=0 timeout=60 op stop interval=0 timeout=120 op monitor interval=200 timeout=40 \
345346
--group g-NW1_ASCS
346347
347348
sudo pcs resource create vip_NW1_ASCS IPaddr2 \
@@ -397,7 +398,7 @@ The following items are prefixed with:
397398
398399
sudo pcs resource create fs_NW1_AERS Filesystem device='sapnfs.file.core.windows.net:/sapnfsafs/sapnw1/usrsapNW1ers' \
399400
directory='/usr/sap/NW1/ERS01' fstype='nfs' force_unmount=safe options='noresvport,vers=4,minorversion=1,sec=sys' \
400-
op start interval=0 timeout=60 op stop interval=0 timeout=120 op monitor interval=200 timeout=40 \
401+
fast_stop=no op start interval=0 timeout=60 op stop interval=0 timeout=120 op monitor interval=200 timeout=40 \
401402
--group g-NW1_AERS
402403
403404
sudo pcs resource create vip_NW1_AERS IPaddr2 \

articles/sap/workloads/high-availability-guide-rhel-with-dialog-instance.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ This article describes how to install and configure Primary Application Server (
4444
* Azure-specific RHEL documentation:
4545
* [Support Policies for RHEL High-Availability Clusters - Microsoft Azure Virtual Machines as Cluster Members](https://access.redhat.com/articles/3131341)
4646
* [Installing and Configuring a Red Hat Enterprise Linux 7.4 (and later) High-Availability Cluster on Microsoft Azure](https://access.redhat.com/articles/3252491)
47+
* [What is the fast_stop option for a Filesystem resource in a Pacemaker cluster?] (https://access.redhat.com/solutions/4801371)
4748

4849
## Overview
4950

@@ -265,23 +266,23 @@ When steps in this document are marked with the following prefixes, they mean:
265266
# If using NFS on Azure files
266267
sudo pcs resource create fs_NW1_PAS Filesystem device='sapnfs.file.core.windows.net:/sapnfsafs/sapnw1/usrsapNW1D02' \
267268
directory='/usr/sap/NW1/D02' fstype='nfs' force_unmount=safe options='noresvport,vers=4,minorversion=1,sec=sys' \
268-
op start interval=0 timeout=60 \
269+
fast_stop=no op start interval=0 timeout=60 \
269270
op stop interval=0 timeout=120 \
270271
op monitor interval=200 timeout=40 \
271272
--group g-NW1_PAS
272273
273274
# If using NFsv3 on Azure NetApp Files
274275
sudo pcs resource create fs_NW1_PAS Filesystem device='10.90.91.5:/sapnw1/usrsapNW1D02' \
275276
directory='/usr/sap/NW1/D02' fstype='nfs' force_unmount=safe \
276-
op start interval=0 timeout=60 \
277+
fast_stop=no op start interval=0 timeout=60 \
277278
op stop interval=0 timeout=120 \
278279
op monitor interval=200 timeout=40 \
279280
--group g-NW1_PAS
280281
281282
# If using NFSv4.1 on Azure NetApp Files
282283
sudo pcs resource create fs_NW1_PAS Filesystem device='10.90.91.5:/sapnw1/usrsapNW1D02' \
283284
directory='/usr/sap/NW1/D02' fstype='nfs' force_unmount=safe options='sec=sys,vers=4.1' \
284-
op start interval=0 timeout=60 \
285+
fast_stop=no op start interval=0 timeout=60 \
285286
op stop interval=0 timeout=120 \
286287
op monitor interval=200 timeout=105 \
287288
--group g-NW1_PAS
@@ -443,23 +444,23 @@ When steps in this document are marked with the following prefixes, they mean:
443444
# If using NFS on Azure files
444445
sudo pcs resource create fs_NW1_AAS Filesystem device='sapnfs.file.core.windows.net:/sapnfsafs/sapnw1/usrsapNW1D03' \
445446
directory='/usr/sap/NW1/D03' fstype='nfs' force_unmount=safe options='noresvport,vers=4,minorversion=1,sec=sys' \
446-
op start interval=0 timeout=60 \
447+
fast_stop=no op start interval=0 timeout=60 \
447448
op stop interval=0 timeout=120 \
448449
op monitor interval=200 timeout=40 \
449450
--group g-NW1_AAS
450451
451452
# If using NFsv3 on Azure NetApp Files
452453
sudo pcs resource create fs_NW1_AAS Filesystem device='10.90.91.5:/sapnw1/usrsapNW1D03' \
453454
directory='/usr/sap/NW1/D03' fstype='nfs' force_unmount=safe \
454-
op start interval=0 timeout=60 \
455+
fast_stop=no op start interval=0 timeout=60 \
455456
op stop interval=0 timeout=120 \
456457
op monitor interval=200 timeout=40 \
457458
--group g-NW1_AAS
458459
459460
# If using NFSv4.1 on Azure NetApp Files
460461
sudo pcs resource create fs_NW1_AAS Filesystem device='10.90.91.5:/sapnw1/usrsapNW1D03' \
461462
directory='/usr/sap/NW1/D03' fstype='nfs' force_unmount=safe options='sec=sys,vers=4.1' \
462-
op start interval=0 timeout=60 \
463+
fast_stop=no op start interval=0 timeout=60 \
463464
op stop interval=0 timeout=120 \
464465
op monitor interval=200 timeout=105 \
465466
--group g-NW1_AAS

articles/sap/workloads/sap-hana-high-availability-scale-out-hsr-rhel.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ Some readers will benefit from consulting a variety of SAP notes and resources b
6969
* Azure-specific RHEL documentation:
7070
* [Install SAP HANA on Red Hat Enterprise Linux for use in Microsoft Azure](https://access.redhat.com/public-cloud/microsoft-azure).
7171
* [Red Hat Enterprise Linux Solution for SAP HANA scale-out and system replication](https://access.redhat.com/solutions/4386601).
72+
* [What is the fast_stop option for a Filesystem resource in a Pacemaker cluster?] (https://access.redhat.com/solutions/4801371).
7273
* [Azure NetApp Files documentation][anf-azure-doc].
7374
* [NFS v4.1 volumes on Azure NetApp Files for SAP HANA](./hana-vm-operations-netapp.md).
7475
* [Azure Files documentation](../../storage/files/storage-files-introduction.md)
@@ -819,12 +820,12 @@ For the next part of this process, you need to create file system resources. Her
819820
```bash
820821
# /hana/shared file system for site 1
821822
pcs resource create fs_hana_shared_s1 --disabled ocf:heartbeat:Filesystem device=10.23.1.7:/HN1-shared-s1 directory=/hana/shared \
822-
fstype=nfs options='defaults,rw,hard,timeo=600,rsize=262144,wsize=262144,proto=tcp,noatime,sec=sys,nfsvers=4.1,lock,_netdev' op monitor interval=20s on-fail=fence timeout=120s OCF_CHECK_LEVEL=20 \
823+
fstype=nfs options='defaults,rw,hard,timeo=600,rsize=262144,wsize=262144,proto=tcp,noatime,sec=sys,nfsvers=4.1,lock,_netdev' fast_stop=no op monitor interval=20s on-fail=fence timeout=120s OCF_CHECK_LEVEL=20 \
823824
op start interval=0 timeout=120 op stop interval=0 timeout=120
824825
825826
# /hana/shared file system for site 2
826827
pcs resource create fs_hana_shared_s2 --disabled ocf:heartbeat:Filesystem device=10.23.1.7:/HN1-shared-s1 directory=/hana/shared \
827-
fstype=nfs options='defaults,rw,hard,timeo=600,rsize=262144,wsize=262144,proto=tcp,noatime,sec=sys,nfsvers=4.1,lock,_netdev' op monitor interval=20s on-fail=fence timeout=120s OCF_CHECK_LEVEL=20 \
828+
fstype=nfs options='defaults,rw,hard,timeo=600,rsize=262144,wsize=262144,proto=tcp,noatime,sec=sys,nfsvers=4.1,lock,_netdev' fast_stop=no op monitor interval=20s on-fail=fence timeout=120s OCF_CHECK_LEVEL=20 \
828829
op start interval=0 timeout=120 op stop interval=0 timeout=120
829830
830831
# clone the /hana/shared file system resources for both site1 and site2
@@ -838,12 +839,12 @@ For the next part of this process, you need to create file system resources. Her
838839
```bash
839840
# /hana/shared file system for site 1
840841
pcs resource create fs_hana_shared_s1 --disabled ocf:heartbeat:Filesystem device=sapnfsafs.file.core.windows.net:/sapnfsafs/hn1-shared-s1 directory=/hana/shared \
841-
fstype=nfs options='defaults,rw,hard,proto=tcp,noatime,nfsvers=4.1,lock' op monitor interval=20s on-fail=fence timeout=120s OCF_CHECK_LEVEL=20 \
842+
fstype=nfs options='defaults,rw,hard,proto=tcp,noatime,nfsvers=4.1,lock' fast_stop=no op monitor interval=20s on-fail=fence timeout=120s OCF_CHECK_LEVEL=20 \
842843
op start interval=0 timeout=120 op stop interval=0 timeout=120
843844
844845
# /hana/shared file system for site 2
845846
pcs resource create fs_hana_shared_s2 --disabled ocf:heartbeat:Filesystem device=sapnfsafs.file.core.windows.net:/sapnfsafs/hn1-shared-s2 directory=/hana/shared \
846-
fstype=nfs options='defaults,rw,hard,proto=tcp,noatime,nfsvers=4.1,lock' op monitor interval=20s on-fail=fence timeout=120s OCF_CHECK_LEVEL=20 \
847+
fstype=nfs options='defaults,rw,hard,proto=tcp,noatime,nfsvers=4.1,lock' fast_stop=no op monitor interval=20s on-fail=fence timeout=120s OCF_CHECK_LEVEL=20 \
847848
op start interval=0 timeout=120 op stop interval=0 timeout=120
848849
849850
# clone the /hana/shared file system resources for both site1 and site2

0 commit comments

Comments
 (0)