10.1 Creating a Server Overrides File
Perform the following steps to create a server overrides file for Oracle Access Management (OAM):
- Navigate to the following directory:
- For OAM domains created with
WLST:
cd $WORKDIR/kubernetes/create-access-domain/domain-home-on-pv/output/weblogic-domains/accessdomain
- For OAM domains created with
WDT:
cd $WORKDIR/kubernetes/create-access-domain/domain-home-on-pv/
- For OAM domains created with
WLST:
- Create a
setUserOverrides.sh
with the following contents:DERBY_FLAG=false JAVA_OPTIONS="${JAVA_OPTIONS} -Djava.net.preferIPv4Stack=true" MEM_ARGS="-Xms8192m -Xmx8192m"
- Copy the
setUserOverrides.sh
file to the Administration Server pod:chmod 755 setUserOverrides.sh
For example:kubectl cp setUserOverrides.sh <domain_namespace>/<domain-uid>-adminserver:/u01/oracle/user_projects/domains/<domain-uid>/bin/setUserOverrides.sh
kubectl cp setUserOverrides.sh oamns/accessdomain-adminserver:/u01/oracle/user_projects/domains/accessdomain/bin/setUserOverrides.sh
- Stop the OAM domain using the following
command:
For example:kubectl -n <domain_namespace> patch domains <domain_uid> --type='json' -p='[{"op": "replace", "path": "/spec/serverStartPolicy", "value": "Never" }]'
The output will look similar to the following:kubectl -n oamns patch domains accessdomain --type='json' -p='[{"op": "replace", "path": "/spec/serverStartPolicy", "value": "Never" }]'
domain.weblogic.oracle/accessdomain patched
- Check that all the pods are
stopped:
For example:kubectl get pods -n <domain_namespace>
The output will look similar to the following:kubectl get pods -n oamns
The Administration Server pod and Managed Server pods will move to aNAME READY STATUS RESTARTS AGE accessdomain-adminserver 1/1 Terminating 0 27m accessdomain-oam-policy-mgr1 1/1 Terminating 0 24m accessdomain-oam-server1 1/1 Terminating 0 24m
STATUS
ofTerminating
. After a few minutes, run the command again and the pods should have disappeared. - Start the domain using the following
command:
For example:kubectl -n <domain_namespace> patch domains <domain_uid> --type='json' -p='[{"op": "replace", "path": "/spec/serverStartPolicy", "value": "IfNeeded" }]'
kubectl -n oamns patch domains accessdomain --type='json' -p='[{"op": "replace", "path": "/spec/serverStartPolicy", "value": "IfNeeded" }]'
- Run the following kubectl command to view the
pods:
For example:kubectl get pods -n <domain_namespace>
The output will look similar to the following:kubectl get pods -n oamns
The Administration Server pod will start followed by the OAM Managed Servers pods. This process will take several minutes, so keep executing the command until all the pods are running withNAME READY STATUS RESTARTS AGE accessdomain-introspector-mckp2 1/1 Running 0 8s
READY
status1/1
:Note:
You can watch the status of the pods by adding the watch flag, for example:kubectl get pods -n oamns -w
NAME READY STATUS RESTARTS AGE accessdomain-adminserver 1/1 Running 0 5m38s accessdomain-oam-policy-mgr1 1/1 Running 0 2m51s accessdomain-oam-server1 1/1 Running 0 2m50s