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
| Auxiliary Azure Services | Azure Automation Account for automation. | Azure Site Recovery for Azure VM Zone to Zone recovery. <br> Azure Automation Account for automation. |
1123
1125
| Additional infrastructure | Azure NFS File Share for shared domain configuration. <br> Azure Virtual Machine, Azure Network Interface and Azure Disk for backup host. | No. |
1124
1126
| RTO | 3-9 min. <br> Need not shutdown the primary machine: 3-5 min. <br> Have to shutdown the primary machine: 8-9 min. | 8-20 min.<br> Need not shutdown the primary machine: 8-12 min. <br> Have to shutdown the primary machine: 15-20 min. |
1125
-
| Pros and Cons |**Pros**:<br> 1. Save time to provision a new machine. <br>**Cons**: <br> 1. Domain configuration in NFS share may cause longer network latency and effect the performance of Admin Server. <br>2. Extra cost for the pre-defined machine. |**Pros**:<br> 1. No additional infrastructure. 2. Leverage ASR to backup and protect the running machine. <br>**Cons**: <br> 1. Takes longer to failover as it has to provison target resources. 2. Extra cost for ASR. |
1127
+
| Pros and Cons |**Pros**:<br> 1. Save time to provision a new machine. <br>**Cons**: <br> 1. Domain configuration in NFS share may cause longer network latency and effect the performance of Admin Server. <br>2. Extra cost for the pre-defined machine. |**Pros**:<br> 1. No additional infrastructure. <br>2. Leverage ASR to backup and protect the running machine. <br>**Cons**: <br> 1. Takes longer to failover as it has to provison target resources. 2. Extra cost for ASR. |
1128
+
1129
+
To move on, make sure you have enable secondary IP for Admin Server, see [Configure Virtual IP for Admin Server](#configure-virtual-ip-for-admin-server).
1126
1130
1127
1131
### Use a pre-defined backup machine
1128
1132
1129
1133
To make sure the domain configuration is the same in both machines, this approach move the domain configuration to shared storage, Azure File NFS share.
1130
1134
1131
-
Let's create an Azure Storage Account and NFS share from Azure Portal:
1135
+
#### Create NFS share
1136
+
1137
+
Let's create an Azure Storage Account and NFS share from Azure Portal, you must select **Premium** sku to enable NFS share.
1138
+
1139
+
- Expand the portal menu and select Create a resource.
1140
+
- Select Storage and Storage account.
1141
+
- Basics
1142
+
- Create a new resource group or select your resource group.
1143
+
- Input storage account name, e.g. `stgwlsdomain`.
1144
+
- Region: East US
1145
+
- Performance: Premium
1146
+
- Premium account type: File share
1147
+
- Networking
1148
+
- Connectivity method: Private endpoint
1149
+
- Add Private endpoint
1150
+
- Name: stg-wls-privateendpoint
1151
+
- Storage sub-resource: file
1152
+
- Networking:
1153
+
- Virtual network: select the vnet of Forms and Reports clusters
1154
+
- Subnet: select the subnet of Forms and Reports clusters
1155
+
- Private DNS integration
1156
+
- Integrate with private DNS zone: yes
1157
+
- Private DNS Zone: select New DNS Zone.
1158
+
- Click OK
1159
+
- Data protection
1160
+
- Enable soft delete for file share.
1161
+
- Click **Review + create**
1162
+
1163
+
After the deployment finishes, you have enable the private access from your WebLogic machines to the storage account.
1164
+
1165
+
Let's create the NFS share.
1166
+
1167
+
- Open your storage account created with above steps from Azure Portal.
After the NFS share deployment completes, you are able to mount it to adminVM.
1176
+
1177
+
#### Mount NFS share to adminVM
1178
+
1179
+
This sample saves the domain configuration in`/u02`. You will move all the data in this directory to NFS share. Before you move the data, you are required to back up the data in the directory and then create a mount point with directory `/u02`. To avoid conflict between the mounted file system and the OS disk, let's delete the directory before mounting the NFS share.
1180
+
1181
+
- SSH to adminVM with command `ssh weblogic@adminVM`, switch to `root` user `sudo su -`
0 commit comments