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/oracle/configure-oracle-dataguard.md
+32-24Lines changed: 32 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,10 @@ To install Oracle Data Guard, you need to create two Azure VMs on the same avail
29
29
30
30
The Marketplace image that you use to create the VMs is Oracle:Oracle-Database-Ee:12.1.0.2:latest.
31
31
32
+
> [!NOTE]
33
+
> Be aware of versions that are End Of Life (EOL) and no longer supported by Redhat. Uploaded images that are, at or beyond EOL will be supported on a reasonable business effort basis. Link to Redhat's [Product Lifecycle](https://access.redhat.com/product-life-cycles/?product=Red%20Hat%20Enterprise%20Linux,OpenShift%20Container%20Platform%204)
34
+
35
+
32
36
### Sign in to Azure
33
37
34
38
Sign in to your Azure subscription by using the [az login](/cli/azure/reference-index) command and follow the on-screen directions.
@@ -65,6 +69,10 @@ Create a VM by using the [az vm create](/cli/azure/vm) command.
65
69
66
70
The following example creates two VMs named `myVM1` and `myVM2`. It also creates SSH keys, if they do not already exist in a default key location. To use a specific set of keys, use the `--ssh-key-value` option.
67
71
72
+
> [!NOTE]
73
+
> Be aware of versions that are End Of Life (EOL) and no longer supported by Redhat. Uploaded images that are, at or beyond EOL will be supported on a reasonable business effort basis. Link to Redhat's [Product Lifecycle](https://access.redhat.com/product-life-cycles/?product=Red%20Hat%20Enterprise%20Linux,OpenShift%20Container%20Platform%204)
Use the following command to create an SSH session with the virtual machine. Replace the IP address with the `publicIpAddress` value for your virtual machine.
158
166
159
167
```bash
160
-
$ ssh azureuser@<publicIpAddress>
168
+
ssh azureuser@<publicIpAddress>
161
169
```
162
170
163
171
### Create the database on myVM1 (primary)
@@ -167,13 +175,13 @@ The Oracle software is already installed on the Marketplace image, so the next s
167
175
Switch to the Oracle superuser:
168
176
169
177
```bash
170
-
$ sudo su - oracle
178
+
sudo su - oracle
171
179
```
172
180
173
181
Create the database:
174
182
175
183
```bash
176
-
$ dbca -silent \
184
+
dbca -silent \
177
185
-createDatabase \
178
186
-templateName General_Purpose.dbc \
179
187
-gdbname cdb1 \
@@ -227,8 +235,8 @@ Look at the log file "/u01/app/oracle/cfgtoollogs/dbca/cdb1/cdb1.log" for furthe
0 commit comments