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
> 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)
> 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)
172
+
173
+
167
174
Use the following command to create an SSH session with the virtual machine. Replace the IP address with the `publicIpAddress` of your virtual machine.
168
175
169
176
```bash
@@ -183,7 +190,7 @@ sudo su - oracle
183
190
Create the database:
184
191
185
192
```bash
186
-
$ dbca -silent \
193
+
dbca -silent \
187
194
-createDatabase \
188
195
-templateName General_Purpose.dbc \
189
196
-gdbname cdb1 \
@@ -237,9 +244,9 @@ Look at the log file "/u01/app/oracle/cfgtoollogs/dbca/cdb1/cdb1.log" for more d
### Prepare the client and VM to run x11 (for Windows clients only)
@@ -397,9 +404,9 @@ This is an optional step. You can skip this step if you are using a Linux client
397
404
4. In your VM, run these commands:
398
405
399
406
```bash
400
-
#sudo su - oracle
401
-
$ mkdir .ssh (if not already created)
402
-
$ cd .ssh
407
+
sudo su - oracle
408
+
mkdir .ssh (if not already created)
409
+
cd .ssh
403
410
```
404
411
405
412
5. Create a file named **authorized_keys**. Paste the contents of the key in this file, and then save the file.
@@ -427,8 +434,8 @@ To install Oracle Golden Gate, complete the following steps:
427
434
1. Sign in as oracle. (You should be able to sign in without being prompted for a password.) Make sure that Xming is running before you begin the installation.
428
435
429
436
```bash
430
-
$ cd /opt/fbo_ggs_Linux_x64_shiphome/Disk1
431
-
$ ./runInstaller
437
+
cd /opt/fbo_ggs_Linux_x64_shiphome/Disk1
438
+
./runInstaller
432
439
```
433
440
434
441
2. Select 'Oracle GoldenGate for Oracle Database 12c'. Then select **Next** to continue.
@@ -460,8 +467,8 @@ To install Oracle Golden Gate, complete the following steps:
460
467
1. Create or update the tnsnames.ora file:
461
468
462
469
```bash
463
-
$ cd$ORACLE_HOME/network/admin
464
-
$ vi tnsnames.ora
470
+
cd$ORACLE_HOME/network/admin
471
+
vi tnsnames.ora
465
472
466
473
cdb1=
467
474
(DESCRIPTION=
@@ -497,7 +504,7 @@ To install Oracle Golden Gate, complete the following steps:
497
504
>
498
505
499
506
```bash
500
-
$ sqlplus / as sysdba
507
+
sqlplus / as sysdba
501
508
SQL> CREATE USER C##GGADMIN identified by ggadmin;
0 commit comments