Use the following example to configure the Performance Manager Infrastructure (PMI) service for an application server:
Using Jacl:
set server [$AdminConfig getid /Cell:mycell/Node:mynode/Server:server1/]Example output:
server1(cells/mycell/nodes/mynode/servers/server1:server.xml#Server_1)
Using Jacl:
set pmi [$AdminConfig list PMIService $server]Example output:
(cells/mycell/nodes/mynode/servers/server1:server.xml#PMIService_1)
Using Jacl:
$AdminConfig modify $pmi {{enable true} {initialSpecLevel beanModule=H:cacheModule=H:connectionPoolModule= H:j2cModule=H:jvmRuntimeModule=H:orbPerfModule=H:servletSessionsModule =H:systemModule=H:threadPoolModule=H:transactionModule=H: webAppModule=H:webServicesModule=H:wlmModule=H:wsgwModule=H}}This example enables PMI service and sets the specification levels for all of components in the server. The following are the valid specification levels for the components:
N | represents none |
L | represents low |
M | represents medium |
H | represents high |
X | represents maximum |
Using Jacl:
$AdminConfig save