10.3 WebLogic Server Tuning
For production environments, WebLogic Server tuning parameters must be set.
Installing the WebLogic Remote Console Extension
In order to perform the tuning tasks, you must install the latest WebLogic Remote Console
extension console-rest-ext-2.4.15.war
in the OAM %DOMAIN_HOME%.
To install the extension, perform the following steps:
- On the administrative host, download the latest WebLogic Remote Console extension,
console-rest-ext-2.4.15.war
, from the WebLogic Remote Console GitHub Repository:cd $WORKDIR
wget https://github.com/oracle/weblogic-remote-console/releases/download/v2.4.15/console-rest-ext-2.4.15.war
- Run the following command to find the
Domain Home
:
For example:kubectl describe domains <domainUID> -n <namespace> | grep "Domain Home:"
The output will look similar to the following:kubectl describe domains accessdomain -n oamns | grep "Domain Home:"
Domain Home: /u01/oracle/user_projects/domains/accessdomain
- Execute the following command to enter a bash shell in the
<domainUID>-adminserver
pod:
For example:kubectl exec -it <domainUID>-adminserver -n <domain_namespace> -- /bin/bash
This will take you inside a bash shell of the pod:kubectl exec -it accessdomain-adminserver -n oamns -- /bin/bash
[oracle@accessdomain-adminserver oracle]$
- Inside the bash shell run the following commands to create a
management-services-ext
directory:
Where %DOMAIN_HOME% is the path returned earlier.mkdir %DOMAIN_HOME%/management-services-ext
For example:mkdir /u01/oracle/user_projects/domains/accessdomain/management-services-ext
- Outside of the bash shell, run the following command to copy the
console-rest-ext-2.4.15.war
into the container:
For example:kubectl -n <namespace> cp $WORKDIR/console-rest-ext-2.4.15.war <domainUID>-adminserver:%DOMAIN_HOME%/management-services-ext/
kubectl -n oamns cp $WORKDIR/console-rest-ext-2.4.15.war accessdomain-adminserver:/u01/oracle/user_projects/domains/accessdomain/management-services-ext/
- Inside the bash shell, run the following to make sure the
console-rest-ext-2.4.15.war
was copied:
For example:ls -l %DOMAIN_HOME%/management-services-ext
The output will look similar to the following:ls /u01/oracle/user_projects/domains/accessdomain/management-services-ext
console-rest-ext-2.4.15.war
Add Minimum Thread Constraint and MaxThreadsCount
- Connect to the OAM Administration Server in the WebLogic Remote Console.
- In the Home page, select Monitoring Tree
- In the left hand navigation menu, select Deployments > Application Management.
- Click oam_server.
- Click Create Plan and provide the Plan Path as:
/u01/oracle/user_projects/domains/accessdomain/Plan.xml
and click Done. - In the left hand navigation menu, select Deployments -> Deployment
Tasks and check the plan was successfully deployed (Progress:
Success
). - In the left hand navigation menu, select Deployments > Application Management > oam_server > Deployment Plan (Advanced).
- Select the Variable Assignments tab.
- Type CTRL + F (menu Edit > Find) and Search for:
/weblogic-web-app/work-manager/[name="wm/OAPOverRestWM"]/min-threads-constraint/[name="MinThreadsCount"]/count
. - Click the checkbox for that row, and click the Edit button (above the
table). Change the following and click Done:
- Value:
400
- Operation:
replace
- Value:
- Type CTRL + F (menu Edit > Find) and Search for:
/weblogic-web-app/work-manager/[name="wm/OAPOverRestWM"]/max-threads-constraint/[name="MaxThreadsCount"]/count
. - Check the checkbox for that row, and click the Edit button (above the
table). Change the following and click Done:
- Value: 1000
- Operation: Replace
- In the left hand navigation menu, select Deployments > Application Management.
- Click the checkbox in the oam_server row, and click Update/Redeploy and select Redeploy - Deployment Source and Plan on Server. Click Done.
- In the left hand navigation menu, select Deployments -> Deployment
Tasks and check the plan was successfully deployed (Progress:
Success
). - To check that the values have been updated, access the Oracle Enterprise Manager
Fusion Middleware Control console, and perform the following steps:
- From the WebLogic Domain drop-down menu, select System MBean Browser.
- Click the Search icon, and search for the MBean
wm/OAPOverRestWM
. - In the left hand menu, expand
MinThreadsConstraintRuntime
>MinThreadsCount
, and check theCount
value is 400. - In the left hand menu, expand
MaxThreadsConstraintRuntime
>MaxThreadsCount
and check theCount
value is1000
.
oamDS DataSource Tuning
- Connect to the OAM Administration Server in the WebLogic Remote Console.
- Click Edit Tree and in the left pane of the console, expand Services > Data Sources > oamDS. In the right hand pane click the Connection Pool tab.
- Change Initial Capacity, Maximum Capacity, and Minimum
Capacity to
800
. - Click Save.
- Click the Shopping Cart in the top right of the console, and click Commit Changes.