Why and when to perform this task
Use the Help object attributes or operations commands to find information on a running MBean in the server.Steps for this task
Using Jacl:
$Help attributes MBeanObjectNamewhere:
$ | is a Jacl operator for substituting a variable name with its value |
Help | is the object that provides general help and information for running MBeans in the connected server process |
attributes | is a Help command |
MBeanObjectName | is the string representation of the MBean object name obtained in step 2 |
Using Jacl:
$Help operations MBeanObjectnameor
$Help operations MBeanObjectname operationNamewhere:
$ | is a Jacl operator for substituting a variable name with its value |
Help | is the object that provides general help and information for running MBeans in the connected server process |
operations | is a Help command |
MBeanObjectname | is the string representation of the MBean object name obtained in step number 2 |
operationName | (optional) is the specified operation for which you want to obtain detailed information |
Using Jacl:
set server [$AdminControl completeObjectName type=Server,name=server1,*] $Help operations $server
Using Jacl:
$Help operations $server stop