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
podman tag container-registry.oracle.com/database/cman:23.7.0.0 localhost/oracle/client-cman:latest
41
41
```
42
42
43
43
If you are using pre-built Oracle Connection Manager from [the Oracle Container Registry](https://container-registry.oracle.com), then you can skip the section [Create Oracle Connection Manager Image](#create-oracle-connection-manager-image) to build the Oracle Connection Manager Image.
@@ -66,6 +66,12 @@ Note:
66
66
-o: passes on container build option (e.g., --build-arg ARGUMENT=value).
67
67
```
68
68
- If you are behind a proxy wall, then you must set the `https_proxy` or `http_proxy` environment variable based on your environment before building the image.
69
+
70
+
Once image is built, retag it to latest as we are going to refer latest image in podman run command-
71
+
```bash
72
+
podman tag localhost/oracle/client-cman:23.5.0 localhost/oracle/client-cman:latest
73
+
```
74
+
69
75
## Create Network Bridge
70
76
**Note:** You can change subnet according to your environment.
71
77
@@ -106,11 +112,10 @@ To create the connection manager container, run the following command as the roo
### Create Oracle Connection Manager Container using `cman.ora`
@@ -178,7 +183,7 @@ Run this command inside the OracleConnectionManager container.
178
183
| DOMAIN | The domain name associated with the container environment. |
179
184
| PUBLIC_IP | The public IP address assigned to the Oracle Connection Manager container. |
180
185
| PUBLIC_HOSTNAME | The public hostname assigned to the Oracle Connection Manager container. |
181
-
| DB_HOSTDETAILS | Details regarding the database host configuration, including host names, rules, and IP addresses to be registered with Connection manager in a command separated format, indicating different hosts and their associated details such as rules and IP addresses. Example: `HOST=racnodepc1-scan:RULE_ACT=accept,HOST=racnodep1:IP=10.0.20.170`. |
186
+
| DB_HOSTDETAILS |This is optional field. Details regarding the database host configuration, including host names, rules, and IP addresses to be registered with Connection manager in a command separated format, indicating different hosts and their associated details such as rules and IP addresses. Example: `HOST=racnodepc1-scan:RULE_ACT=accept,HOST=racnodep1:IP=10.0.20.170`. |
182
187
| DNS_SERVER | The default is set to `10.0.20.25`, which is the DNS container resolving the Connection Manager and Oracle Database containers. Replace this with your DNS server IP if needed. |
183
188
| USER_CMAN_FILE | (Optional) If you want to provide your own pre-created `cman.ora` file, set this environment variable and attach the file as a Podman volume in the `podman run` command. |
0 commit comments