You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/virtual-machines/workloads/sap/high-availability-guide-rhel-nfs-azure-files.md
+13-11Lines changed: 13 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -121,7 +121,7 @@ Check if your selected Azure region offers NFS 4.1 on Azure Files with the appro
121
121
122
122
It's recommended to access your Azure Storage account through an [Azure Private Endpoint](../../../storage/files/storage-files-networking-endpoints.md?tabs=azure-portal). Make sure to deploy the Azure Files storage account endpoint and the VMs, where you need to mount the NFS shares, in the same Azure VNet or peered Azure VNets.
123
123
124
-
1. Deploy a File Storage account named `sapafsnfs`. In this example, we use ZRS. If you're not familiar with the process, see [Create a storage account](../storage/files/storage-how-to-create-file-share.md?tabs=azure-portal#create-a-storage-account) for the Azure portal.
124
+
1. Deploy a File Storage account named `sapafsnfs`. In this example, we use ZRS. If you're not familiar with the process, see [Create a storage account](../../../storage/files/storage-how-to-create-file-share.md?tabs=azure-portal#create-a-storage-account) for the Azure portal.
125
125
1. In the **Basics** tab, use these settings:
126
126
127
127
1. For **Storage account name**, enter `sapafsnfs`.
@@ -186,7 +186,7 @@ Next, deploy the NFS shares in the storage account you created. In this example,
186
186
> [!IMPORTANT]
187
187
> The share size above is just an example. Make sure to size your shares appropriately. Size not only based on the size of the of data stored on the share, but also based on the requirements for IOPS and throughput. For details see [Azure file share targets](../../../storage/files/storage-files-scale-targets.md#azure-file-share-scale-targets).
188
188
189
-
The SAP file systems that don't need to be mounted via NFS can be also be deployed on [Azure disk storage](../../disks-types.md#premium-ssds). In this example, you can deploy `/usr/sap/NW1/D02` and `/usr/sap/NW1/D03` on Azure disk storage.
189
+
The SAP file systems that don't need to be mounted via NFS can also be deployed on [Azure disk storage](../../disks-types.md#premium-ssds). In this example, you can deploy `/usr/sap/NW1/D02` and `/usr/sap/NW1/D03` on Azure disk storage.
190
190
191
191
### Important considerations for NFS on Azure Files shares
192
192
@@ -231,7 +231,8 @@ After you deploy the VMs for your SAP system, create a load balancer. Then, use
231
231
1. Click Add a virtual machine.
232
232
1. Select Virtual machine
233
233
1. Select the virtual machines of the (A)SCS cluster and their IP addresses.
234
-
1. Click Add
234
+
1. Click Add
235
+
235
236
1. Create the health probes
236
237
1. Port 620**00** for ASCS
237
238
1. Open the load balancer, select health probes, and click Add
@@ -820,11 +821,11 @@ In this example, SAP NetWeaver is installed on SAP HANA. You can use every suppo
820
821
821
822
Follow these steps to install an SAP application server.
822
823
823
-
1. Prepare application server
824
+
1. **[A]**Prepare application server
824
825
825
826
Follow the steps in the chapter [SAP NetWeaver application server preparation](high-availability-guide-rhel-nfs-azure-files.md#2d6008b0-685d-426c-b59e-6cd281fd45d7) above to prepare the application server.
826
827
827
-
1. Install SAP NetWeaver application server.
828
+
1. **[A]**Install SAP NetWeaver application server.
828
829
829
830
Install a primary or additional SAP NetWeaver applications server.
830
831
@@ -834,11 +835,11 @@ Follow these steps to install an SAP application server.
Update the SAP HANA secure store to point to the virtual name of the SAP HANA System Replication setup.
840
841
841
-
Run the following command to list the entries as \<sapsid>adm
842
+
Run the following command to list the entries as `<sapsid>adm`
842
843
843
844
```bash
844
845
hdbuserstore List
@@ -850,21 +851,22 @@ Follow these steps to install an SAP application server.
850
851
KEY FILE : /home/nw1adm/.hdb/sapa01/SSFS_HDB.KEY
851
852
852
853
KEY DEFAULT
853
-
ENV :192.168.14.4:30313
854
+
ENV :10.90.90.5:30313
854
855
USER: SAPABAP1
855
856
DATABASE: NW1
856
857
```
857
858
858
-
The output shows that the IP address of the default entry is pointing to the virtual machine and not to the load balancer's IP address. This entry needs to be changed to point to the virtual hostname of the load balancer. Make sure to use the same port (**30313** in the output above) and database name (**NW1** in the output above)!
859
+
In this example, the IP address of the default entry points to the VM, not the load balancer. Change the entry to point to the virtual hostname of the load balancer. Make sure to use the same port and database name. For example, `30313` and `NW1`in the sample output.
860
+
859
861
860
862
```bash
861
863
su - nw1adm
862
864
hdbuserstore SET DEFAULT nw1db:30313@NW1 SAPABAP1 <password of ABAP schema>
863
865
```
864
866
865
-
## Test the cluster setup
867
+
## Test cluster setup
866
868
867
-
Next, make sure that you thoroughly test your Pacemaker cluster: execute the typical [failover tests](./high-availability-guide-rhel.md#test-the-cluster-setup).
869
+
Thoroughly test your Pacemaker cluster. [Execute the typical failover tests](./high-availability-guide-rhel.md#test-the-cluster-setup).
Copy file name to clipboardExpand all lines: articles/virtual-machines/workloads/sap/high-availability-guide-suse-nfs-azure-files.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -123,7 +123,7 @@ Check if your selected Azure region offers NFS 4.1 on Azure Files with the appro
123
123
124
124
It's recommended to access your Azure Storage account through an [Azure Private Endpoint](../../../storage/files/storage-files-networking-endpoints.md?tabs=azure-portal). Make sure to deploy the Azure Files storage account endpoint and the VMs, where you need to mount the NFS shares, in the same Azure VNet or peered Azure VNets.
125
125
126
-
1. Deploy a File Storage account named `sapafsnfs`. In this example, we use ZRS. If you're not familiar with the process, see [Create a storage account](../storage/files/storage-how-to-create-file-share.md?tabs=azure-portal#create-a-storage-account) for the Azure portal.
126
+
1. Deploy a File Storage account named `sapafsnfs`. In this example, we use ZRS. If you're not familiar with the process, see [Create a storage account](../../../storage/files/storage-how-to-create-file-share.md?tabs=azure-portal#create-a-storage-account) for the Azure portal.
127
127
1. In the **Basics** tab, use these settings:
128
128
129
129
1. For **Storage account name**, enter `sapafsnfs`.
@@ -188,7 +188,7 @@ Next, deploy the NFS shares in the storage account you created. In this example,
188
188
> [!IMPORTANT]
189
189
> The share size above is just an example. Make sure to size your shares appropriately. Size not only based on the size of the of data stored on the share, but also based on the requirements for IOPS and throughput. For details see [Azure file share targets](../../../storage/files/storage-files-scale-targets.md#azure-file-share-scale-targets).
190
190
191
-
The SAP file systems that don't need to be mounted via NFS can be also be deployed on [Azure disk storage](../../disks-types.md#premium-ssds). In this example, you can deploy `/usr/sap/NW1/D02` and `/usr/sap/NW1/D03` on Azure disk storage.
191
+
The SAP file systems that don't need to be mounted via NFS can also be deployed on [Azure disk storage](../../disks-types.md#premium-ssds). In this example, you can deploy `/usr/sap/NW1/D02` and `/usr/sap/NW1/D03` on Azure disk storage.
192
192
193
193
### Important considerations for NFS on Azure Files shares
194
194
@@ -233,7 +233,8 @@ After you deploy the VMs for your SAP system, create a load balancer. Then, use
233
233
1. Click Add a virtual machine.
234
234
1. Select Virtual machine
235
235
1. Select the virtual machines of the (A)SCS cluster and their IP addresses.
236
-
1. Click Add
236
+
1. Click Add
237
+
237
238
1. Create the health probes
238
239
1. Port 620**00** for ASCS
239
240
1. Open the load balancer, select health probes, and click Add
@@ -828,16 +829,16 @@ Follow these steps to install an SAP application server.
828
829
DATABASE: NW1
829
830
```
830
831
831
-
The output shows that the IP address of the default entry is pointing to the virtual machine and not to the load balancer's IP address. This entry needs to be changed to point to the virtual hostname of the load balancer. Make sure to use the same port (**30313** in the output above) and database name (**NW1** in the output above)!
832
+
In this example, the IP address of the default entry points to the VM, not the load balancer. Change the entry to point to the virtual hostname of the load balancer. Make sure to use the same port and database name. For example, `30313`and `NW1`in the sample output.
832
833
833
834
```bash
834
835
su - nw1adm
835
836
hdbuserstore SET DEFAULT nw1db:30313@NW1 SAPABAP1 <password of ABAP schema>
836
837
```
837
838
838
-
## Test the cluster setup
839
+
## Test cluster setup
839
840
840
-
Next, make sure that you thoroughly test your Pacemaker cluster: execute the typical [failover tests](./high-availability-guide-suse.md#test-the-cluster-setup).
841
+
Thoroughly test your Pacemaker cluster. [Execute the typical failover tests](./high-availability-guide-suse.md#test-the-cluster-setup).
0 commit comments