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
ADMIN_PORT=<port number where Administration Server is running>
182
+
ADMIN_PORT=<Node port number mapping Administration Server container port `7001`>
183
183
PERSISTENCE_STORE=<jdbc | file>
184
184
```
185
185
>IMPORTANT: `DOMAIN_TYPE` must be carefully chosen and specified depending on the use case. It can't be changed once you proceed.
@@ -203,8 +203,6 @@ PERSISTENCE_STORE=jdbc
203
203
```
204
204
If `PERSISTENCE_STORE` is not specified, the default value is `jdbc`. When `PERSISTENCE_STORE=jdbc`, a JDBC persistence store will be configured for all servers for TLOG + SOAJMS/UMSJMS servers. If `PERSISTENCE_STORE=file`, file-based persistence stores will be used instead.
205
205
206
-
> IMPORTANT: In the Administration Server's environment variables file, the `ADMIN_PORT` value must be `7001`.
207
-
208
206
To start a Docker container with a SOA domain and the WebLogic Server Administration Server, use the `docker run` command and pass the `adminserver.env.list` file.
209
207
210
208
For example:
@@ -236,13 +234,16 @@ Create an environment variables file specific to each Managed Server in the clus
236
234
MANAGED_SERVER=<Managed Server name, either soa_server1 or soa_server2>
237
235
DOMAIN_NAME=soainfra
238
236
ADMIN_HOST=<Administration Server hostname>
239
-
ADMIN_PORT=<port number where Administration Server is running>
237
+
ADMIN_PORT=<Node port number mapping Administration Server container port `7001`>
240
238
ADMIN_PASSWORD=<admin_password>
241
239
MANAGED_SERVER_CONTAINER=true
242
-
MANAGEDSERVER_PORT=<port number where Managed Server is running>
240
+
MANAGEDSERVER_PORT=<Container port number where Managed Server is running>
243
241
```
244
242
245
-
>IMPORTANT: In the Managed Servers environment variables file, the `MANAGED_SERVER` value must be `soa_server1` or `soa_server2`for the `soa` and `soaosb` domain type. Also, `MANAGEDSERVER_PORT` must be `8001`for`soa_server1` or `8002`for`soa_server2`.
243
+
>IMPORTANT: In the Managed Servers environment variables file
244
+
> - `MANAGED_SERVER` value must be `soa_server1` or `soa_server2` for the `soa` and `soaosb` domain type.
245
+
> - `MANAGEDSERVER_PORT` must be `8001` for `soa_server1` or `8002` for `soa_server2`.
246
+
> - `ADMIN_PORT` must match the **node** port mapping the Administration Server container port `7001`.
246
247
247
248
Example for `soaserver1.env.list`:
248
249
``` bash
@@ -302,13 +303,16 @@ Create an environment variables file specific to each Managed Server in the clus
302
303
MANAGED_SERVER=<Managed Server name, either osb_server1 or osb_server2>
303
304
DOMAIN_NAME=soainfra
304
305
ADMIN_HOST=<Administration Server hostname>
305
-
ADMIN_PORT=<port number where Administration Server is running>
306
+
ADMIN_PORT=<Node port number mapping Administration Server container port `7001`>
306
307
ADMIN_PASSWORD=<admin_password>
307
308
MANAGED_SERVER_CONTAINER=true
308
-
MANAGEDSERVER_PORT=<port number where Managed Server is running>
309
+
MANAGEDSERVER_PORT=<Container port number where Managed Server is running>
309
310
```
310
311
311
-
>IMPORTANT: In the Managed Servers environment variables file the `MANAGED_SERVER` value must be `osb_server1` or `osb_server2`for the `osb` and `soaosb` domain type. Also, `MANAGEDSERVER_PORT` must be `9001`for`osb_server1` or `9002`for`osb_server2`.
312
+
>IMPORTANT: In the Managed Servers environment variables file
313
+
> - `MANAGED_SERVER` value must be `osb_server1` or `osb_server2` for the `osb` and `soaosb` domain type.
314
+
> - `MANAGEDSERVER_PORT` must be `9001` for `osb_server1` or `9002` for `osb_server2`.
315
+
> - `ADMIN_PORT` must match the **node** port mapping the Administration Server container port `7001`.
0 commit comments