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
If SELinux is enabled on Podman Host (you can check by running `sestatus` command), then execute below to make SELinux policy as `permissive` and reboot the host machine. This will allow permissions to write to `asm-disks*` in the `/oradata` folder inside the podman containers-
140
+
```bash
141
+
sed -i 's/^SELINUX=.*/SELINUX=permissive/' /etc/selinux/config
142
+
reboot
143
+
```
144
+
139
145
Execute following command to create the container:
Copy file name to clipboardexpand all lines: OracleDatabase/RAC/OracleRealApplicationClusters/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -623,7 +623,7 @@ You must install and configure [Podman release 4.0.2](https://docs.oracle.com/en
623
623
624
624
- You can check the details on [Oracle Linux and Unbreakable Enterprise Kernel (UEK) Releases](https://blogs.oracle.com/scoter/post/oracle-linux-and-unbreakable-enterprise-kernel-uek-releases)
625
625
626
-
- You do not need to execute step 2 in this section to create and enable`Podman-rac-cgroup.service` when we are running Oracle Linux 8 with Unbreakable Enterprise Kernel R7.
626
+
- You do not need to execute step 2 in this section to create and enable`podman-rac-cgroup.service` when we are running Oracle Linux 8 with Unbreakable Enterprise Kernel R7.
627
627
628
628
**IMPORTANT:** Completing prerequisite steps is a requirement for successful configuration.
If the install fails for any reason, log in to container using the above command and check `/tmp/orod.log`. You can also review the Grid Infrastructure logs located at `$GRID_BASE/diag/crs` and check for failure logs. If the failure occurred during the database creation then check the database logs.
453
454
455
+
## Cleanup RAC Environment
456
+
Below commands can be executed to cleanup above RAC Environment -
## Section 1 : Prerequisites for RAC Database on Podman with Podman Compose
@@ -92,6 +93,12 @@ In order to setup Oracle RAC on Podman with Oracle RAC Storage Container with Po
92
93
yum -y install nfs-utils
93
94
```
94
95
96
+
If SELinux is enabled on Podman Host (you can check by running `sestatus` command), then execute below to make SELinux policy as `permissive` and reboot host machine. This will allow permissions to write to `asm-disks*` in the `/oradata` folder inside the podman containers-
97
+
```bash
98
+
sed -i 's/^SELINUX=.*/SELINUX=permissive/' /etc/selinux/config
99
+
reboot
100
+
```
101
+
95
102
Lets identify necessary variables to export that will be used by `podman-compose.yml` file later. Below is one example of exporting necessary variables related to docker network, DNS container, Storage Container, RAC Container and CMAN container discussed in this repo.
If the install fails for any reason, log in to container using the above command and check `/tmp/orod.log`. You can also review the Grid Infrastructure logs located at `$GRID_BASE/diag/crs` and check for failure logs. If the failure occurred during the database creation then check the database logs.
446
454
455
+
## Cleanup RAC Environment
456
+
Below commands can be executed to cleanup above RAC Environment -
0 commit comments