Skip to content

Commit e0c56bd

Browse files
committed
minor link fixes
1 parent c13f8df commit e0c56bd

File tree

8 files changed

+20
-18
lines changed

8 files changed

+20
-18
lines changed

OracleDatabase/RAC/OracleRACStorageServer/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Builds a Docker Image for Oracle Database.
4848

4949
Parameters:
5050
-v: version to build
51-
Choose one of: latest ol7
51+
Choose one of: latest or ol7
5252
Choose "latest" version for podman host machines
5353
Choose "ol7" for docker host machines
5454
-o: passes on Docker build option
@@ -190,7 +190,7 @@ docker logs -f racnode-storage
190190

191191
**NOTE**: Place the directory in a container that has at least 60 GB. In the preceding example, we are using `/scratch/stage/rac-storage/$ORACLE_DBNAME`. Change these values according to your environment. Inside the container, the directory will be `/oradata`. Do not change this value.
192192

193-
In the preceding example, we use **192.168.17.0/24** as the subnet for the NFS server. You can change the subnet values according to your environment.
193+
In the following example, we use **192.168.17.0/24** as the subnet for the NFS server. You can change the subnet values according to your environment.
194194

195195
You should see following in the Docker logs output:
196196

OracleDatabase/RAC/OracleRealApplicationClusters/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,13 @@ However, if you are using pre-built RAC Images from the Oracle Container Registr
7979
Oracle RAC is supported for production use on Podman starting with Oracle Database 19c (19.16) and Oracle Database 21c (21.7). You can also deploy Oracle RAC on Podman using the pre-built images available on the Oracle Container Registry.
8080
Refer to this [documentation](https://docs.oracle.com/en/operating-systems/oracle-linux/docker/docker-UsingDockerRegistries.html#docker-registry) for details on using Oracle Container Registry.
8181

82-
Example of pulling an Oracle RAC Database Image from the Oracle Container Registry:
82+
Example of pulling an Oracle RAC Image from the Oracle Container Registry:
8383
```bash
84-
podman pull container-registry.oracle.com/database/rac_ru:21.16
85-
podman tag container-registry.oracle.com/database/rac_ru:21.16 localhost/oracle/database-rac:21c
84+
# For Oracle RAC Container Image
85+
podman pull container-registry.oracle.com/database/rac_ru:latest
86+
podman tag container-registry.oracle.com/database/rac_ru:latest localhost/oracle/database-rac:21c
8687
```
88+
**NOTE** Currently, latest tag in Oracle Container registry represents `21.16.0` tag. If you are pulling any other version of container image, then retag approriately as per your environment to use in `podman create` commands later.
8789

8890
If you are using pre-built Oracle RAC images from the [Oracle Container Registry](https://container-registry.oracle.com), then you can skip the section [Building Oracle RAC Database Container Image](#building-oracle-rac-database-container-image).
8991

OracleDatabase/RAC/OracleRealApplicationClusters/docs/DELETION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ python3 main.py --delracnode="del_rachome=true;del_gridnode=true"
1313
Validate racnodep3 is deleted successfully from Oracle RAC on Container Cluster -
1414
```bash
1515
podman exec -it racnodep1 bash
16-
[root@racnodep1 bin]# /u01/app/23.3.0/grid/bin/olsnodes -n
16+
[root@racnodep1 bin]# /u01/app/21c/grid/bin/olsnodes -n
1717
racnodep1 1
1818
racnodep2 2
1919
```

OracleDatabase/RAC/OracleRealApplicationClusters/docs/ENVIRONMENTVARIABLES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ This section provides information about the environment variables that can be us
4040
| DB_HOME | Mandatory | Setup using Slim Image | Path to Oracle Database home directory. Default value is `/u01/app/oracle/product/21c/dbhome_1`. |
4141
| DB_BASE | Mandatory | Setup using Slim Image | Path to the base directory of Oracle Database. Default value is `/u01/app/oracle`. |
4242
| INVENTORY | Mandatory | Setup using Slim Image | Path to the Oracle Inventory directory. Default value is `/u01/app/oraInventory`. |
43-
| STAGING_SOFTWARE_LOC | Mandatory | Setup using Slim Image | Location where the Oracle software zip files are staged. Default value is `/scratch/software/21c/goldimages/240308`. |
43+
| STAGING_SOFTWARE_LOC | Mandatory | Setup using Slim Image | Location where the Oracle software zip files are staged. Default value is `/scratch/software/21c/goldimages/`. |
4444
| GRID_SW_ZIP_FILE | Mandatory | Setup using Slim Image | Name of the Oracle Grid Infrastructure software zip file. Default value is `LINUX.X64_213000_grid_home.zip`. |
4545
| DB_SW_ZIP_FILE | Mandatory | Setup using Slim Image | Name of the Oracle Database software zip file. Default value is `LINUX.X64_213000_db_home.zip`. |
4646
| GRID_RESPONSE_FILE | Mandatory | Setup using User Defined Response Files | Path to the Oracle Grid Infrastructure response file. Default value is `/tmp/grid_21c.rsp`. |

OracleDatabase/RAC/OracleRealApplicationClusters/docs/developers/OTHERS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,10 @@ Refer to [this documentation](https://docs.oracle.com/en/operating-systems/oracl
8383
Example of pulling an Oracle RAC Image from the Oracle Container Registry:
8484
```bash
8585
# For Oracle RAC Container Image
86-
podman pull container-registry.oracle.com/database/rac_ru:21.16
87-
podman tag container-registry.oracle.com/database/rac_ru:21.16 localhost/oracle/database-rac:21.3.0
86+
podman pull container-registry.oracle.com/database/rac_ru:latest
87+
podman tag container-registry.oracle.com/database/rac_ru:latest localhost/oracle/database-rac:21c
8888
```
89-
89+
**NOTE** Currently, latest tag in Oracle Container registry represents `21.16.0` tag. If you are pulling any other version of container image, then retag approriately as per your environment to use in `podman create` commands later.
9090
If you are using pre-built Oracle RAC images from the Oracle Container Registry, then you can skip the section that follows where we build the container images.
9191

9292
If you want to build the latest Oracle RAC Image from this Github repository, instead of a pre-built image, then then follow these instructions.

OracleDatabase/RAC/OracleRealApplicationClusters/docs/developers/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ You can validate if the environment is healthy by running the below command-
267267
```bash
268268
podman ps -a
269269
270-
58642afb20eb localhost/oracle/rac-dnsserver:latest /bin/sh -c exec $... 23 hours ago Up 23 hours (healthy) rac-dnsserver
270+
58642afb20eb localhost/oracle/rac-dnsserver:latest /bin/sh -c exec $... 23 hours ago Up 23 hours (healthy) rac-dnsserver
271271
a192f4e9092a localhost/oracle/database-rac:21c 10 hours ago Up 10 hours (healthy) racnodep1
272272
745679457df5 localhost/oracle/database-rac:21c 10 hours ago Up 10 hours (healthy) racnodep2
273273
```
@@ -287,7 +287,7 @@ Refer to [README](../CLEANUP.md) for instructions on how to cleanup an Oracle RA
287287

288288
## Support
289289

290-
At the time of this release, Oracle RAC on Podman is supported for Oracle Linux 9.3 later. To see current Linux support certifications, refer [Oracle RAC on Podman Documentation](https://docs.oracle.com/en/database/oracle/oracle-database/21/install-and-upgrade.html)
290+
At the time of this release, Oracle RAC on Podman is supported for Oracle Linux 8.10 later. To see current Linux support certifications, refer [Oracle RAC on Podman Documentation](https://docs.oracle.com/en/database/oracle/oracle-database/21/install-and-upgrade.html)
291291

292292
## License
293293

OracleDatabase/RAC/README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@ Review the README of the following sections in the order given. After reviewing
1818
* (Optional) Public IP for OracleConnectionManager container.
1919
* Ensure to have internet connectivity for DNF Package Manager.
2020

21-
## OracleConnectionManager
22-
23-
Provides Docker build files to create an Oracle Connection Manager container image. If you are planing to run RAC containers on single host and RAC containers IPs are not accessible on your network, you can use connection manager image to access RAC database on your network. For more details, see [OracleConnectionManager/README.md](./OracleConnectionManager/README.md).
24-
2521
## Oracle Restart
2622
Provides Details to create Oracle Database on Oracle Restart. For more details, see [OracleRealApplicationClusters/docs/orestart/README.md](./OracleRealApplicationClusters/docs/orestart/README.md)
2723

@@ -38,11 +34,11 @@ You need to review `OracleRACDNSServer` and `OracleRACStorageServer` sections, c
3834

3935
* **OracleRACDNSServer Container**
4036

41-
Provides Podman build files to create a local DNS Server container for Oracle RAC on Podman. This container-based DNS server provides IP addresses and the hostname resolution for the containers on the host. For more details, see [OracleRACDNSServer/README.md](./OracleDNSServer/README.md).
37+
Provides Podman build files to create a local DNS Server container for Oracle RAC on Podman. This container-based DNS server provides IP addresses and the hostname resolution for the containers on the host. For more details, see [OracleRACDNSServer/README.md](./OracleDNSServer/README.md)
4238

4339
* **OracleRACStorageServer Container**
4440

45-
Provides Podman build files to create an NFS-based storage server for Oracle RAC. If you do not have a block storage or NAS device for Oracle RAC to store OCR, Voting files and Datafiles, then you can use the Oracle RAC Storage Server Container Image to provide shared storage. For more details, see [OracleRACStorageServer/README.md](./OracleRACStorageServer/README.md).
41+
Provides Podman build files to create an NFS-based storage server for Oracle RAC. If you do not have a block storage or NAS device for Oracle RAC to store OCR, Voting files and Datafiles, then you can use the Oracle RAC Storage Server Container Image to provide shared storage. For more details, see [OracleRACStorageServer/README.md](./OracleRACStorageServer/README.md)
4642

4743
* **Oracle Real Application Clusters for Developers**
4844
Provides Details to create an Oracle RAC Database Container Image for developers. For more details, see [OracleRealApplicationClusters/docs/developers/README.md](./OracleRealApplicationClusters/docs/developers/README.md)

OracleDatabase/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,7 @@ Provides terraform scripts to deploy Oracle Sharding in Oracle Cloud with Oracle
99

1010
## RAC
1111
Provides Podman build files to create an Oracle RAC Database podman image. For more details, see [RAC/README.md](./RAC/README.md).
12+
13+
## OracleConnectionManager
14+
15+
Provides container build files to create an Oracle Connection Manager container image. If you are planing to run RAC containers on single host and RAC containers IPs are not accessible on your network, you can use connection manager image to access RAC database on your network. For more details, see [OracleConnectionManager/README.md](./OracleConnectionManager/README.md)

0 commit comments

Comments
 (0)