4 Identity Directory Service WLST Commands
Use these WebLogic Scripting Tool (WLST) commands to manage Identity Directory Service.
The Identity Directory Service Commands section lists the Identity Directory Service WLST commands and contains links to the command reference details.
4.1 Identity Directory Service WLST Commands
Use the WLST commands listed in Table 4-1 to manage Identity Directory Service entity attributes, entity definitions, relationships and default operational configurations.
Table 4-1 WLST Identity Directory Service Commands
Use this command... | To... | Use with WLST... |
---|---|---|
Reload the Identity Directory Service configuration. |
Online |
|
Add a new attribute to the entity configuration. |
Online |
|
Add new properties for an attribute in an entity configuration. |
Online |
|
Add a new attribute to the specified entity. |
Online |
|
Add new properties for an attribute reference in an entity configuration. |
Online |
|
Add a new property for a specified operation configuration. |
Online |
|
Add a new entity to the entity configuration. |
Online |
|
Add new properties for an entity in an entity configuration. |
Online |
|
Add a new entity relation to the entity configuration. |
Online |
|
Add a new Identity Directory Service to the configuration. |
Online |
|
Add a new operation configuration to the entity configuration. |
Online |
|
Add a new property to a specified operation configuration. |
Online |
|
Delete an attribute from an entity configuration. |
Online |
|
Delete attribute properties in an entity configuration. |
Online |
|
Delete attribute reference properties in an entity configuration. |
Online |
|
Delete an entity from an entity configuration. |
Online |
|
Delete entity properties in an entity configuration. |
Online |
|
Delete the specified entity relation. |
Online |
|
Delete the specified Identity Directory Service in the configuration. |
Online |
|
Delete operation configuration in an entity configuration. |
Online |
|
List all attributes in the entity configuration. |
Online |
|
List all entities defined in the specified entity configuration. |
Online |
|
List all Identity Directory Services in the configuration. |
Online |
|
Remove an attribute from the specified entity. |
Online |
|
Remove a property for the specified operation configuration. |
Online |
|
Remove a property for the specified operation configuration. |
Online |
|
Update attributes in an entity configuration. |
Online |
|
Update attribute properties in an entity configuration. |
Online |
|
Update attribute reference properties in an entity configuration. |
Online |
|
Update an entity's properties in an entity configuration. |
Online |
|
Update an entity's properties in an entity configuration. |
Online |
|
Update the entity properties in an entity configuration. |
Online |
|
Delete the attribute properties in an entity configuration. |
Online |
|
Dumps the LDAP connection pool statistics for the associated in-memory IDS configuration for the current JVM into a specified file. |
Online |
|
Dumps the LDAP connection pool statistics for all in-memory IDS configuration for the current JVM into a specified file. |
Online |
|
Dumps the LDAP connection pool statistics for all file-based IDS configuration for the current JVM into a specified file. |
Online |
|
Dumps the LDAP connection pool statistics for all file-based IDS configuration for the current JVM into a specified file. |
Online |
4.1.1 activateIDSConfigChanges
Online command that reloads the configuration for Identity Directory Service.
Description
Reloads the Identity Directory Service configuration.
Syntax
activateIDSConfigChanges()
This command has no arguments.
Example
The following command reloads the Identity Directory Service configuration:
activateIDSConfigChanges()
4.1.2 addAttributeInEntityConfig
Online command that adds an attribute to the entity configuration.
Description
Adds a new attribute to the entity configuration.
Syntax
addAttributeInEntityConfig(name, datatype, description, readOnly, pwdAttr, appName)
Table 4-2 addAttributeInEntityConfig Arguments
Argument | Definition |
---|---|
|
Name of the attribute to be added. |
|
The attribute's type is defined as one of the following:
|
|
Description of the attribute to be added. |
|
Flag to specify whether the attribute is read only or can be modified. |
|
Flag to specify whether the attribute defines a password or not. |
|
Name of the Identity Directory Service. |
Example
The following command adds an attribute commonname
of userrole
entity:
addAttributeInEntityConfig('commonname','string','common name',false,false,'userrole')
4.1.3 addAttributePropsInEntityConfig
Online command that adds properties for an attribute in an entity configuration.
Description
Adds new properties for an attribute in an entity configuration.
Syntax
addAttributePropsInEntityConfig(name, propNames, propVals, appName)
Table 4-3 addAttributePropsInEntityConfig Arguments
Argument | Definition |
---|---|
|
Name of the attribute to be added. |
|
List of property names separated by "|". The properties ( For configuration attributes, however, the Identity Directory Service performs a schema check and interprets the configuration names and their values. |
|
List of corresponding property values separated by "|". |
|
Name of the Identity Directory Service. |
Example
The following command adds an attribute orgunit
of entity userrole
:
addAttributePropsInEntityConfig('orgunit','labelname|multivalued','common name|true','userrole')
4.1.4 addAttributeRefForEntity
Online command that adds attribute to an entity.
Description
Adds a new attribute to the specified entity.
Syntax
addAttributeRefForEntity(name, attrRefName, attrRefFilter, attrRefDefaultFetch, appName)
Table 4-4 addAttributeRefForEntity Arguments
Argument | Definition |
---|---|
|
Name of the entity to which the attribute will be added. |
|
Name of the attribute to be added to the entity. |
|
Type of filter to be used with the attribute, defined as one of the following:
|
|
Flag to specify whether the attribute is fetched by default. |
|
Name of the Identity Directory Service. |
Example
The following command adds an attribute User
to userrole
entity:
addAttributeRefForEntity('User','givenname','none','true','userrole')
4.1.5 addAttrrefPropsInEntityConfig
Online command that adds property for an attribute reference.
Description
Adds new properties for an attribute reference in an entity configuration.
Syntax
addAttrrefPropsInEntityConfig(entityName, attrName, propNames, propVals, appName)
Table 4-5 addAttrrefPropsInEntityConfig Arguments
Argument | Definition |
---|---|
|
Name of the entity. |
|
Name of the attribute reference. |
|
List of property names separated by "|". The properties ( For configuration attributes, however, the Identity Directory Service performs a schema check and interprets the configuration names and their values. |
|
List of corresponding property values separated by "|". |
|
Name of the Identity Directory Service. |
Example
The following command adds a multivalued property labelname
for org
entity:
addAttrrefPropsInEntityConfig('org', 'orgunit','labelname|multivalued','common name|true','userrole')
4.1.6 addCommonPropertyForOperationConfig
Online command that adds a property for an operation configuration.
Description
Adds a new property for a specified operation configuration.
Syntax
addCommonPropertyForOperationConfig(entityName, propName, propValue, appName)
Table 4-6 addCommonPropertyForOperationConfig Arguments
Argument | Definition |
---|---|
|
Name of the entity. |
|
Name of the property to be added for this operation configuration. |
|
Value of the property to be added for this operation configuration. |
|
Name of the Identity Directory Service. |
Example
The following command adds a new property member
:
addCommonPropertyForOperationConfig('groupmember.attr', 'member', 'userrole')
4.1.7 addEntity
Online command that adds an entity to the configuration.
Description
Adds a new entity to the entity configuration.
Syntax
addEntity(name, type, idAttr, create, modify, delete, search, attrRefNames, attrRefFilters, attrRefDefaultFetches, appName)
Table 4-7 addEntity Arguments
Argument | Definition |
---|---|
|
Name of the entity to which the attribute will be added. |
|
Name of the attribute to be added to the entity. |
|
Identity attribute of the entity to be added. |
|
Flag to specify the create is allowed. |
|
Flag to specify the modify is allowed. |
|
Flag to specify the delete is allowed. |
|
Flag to specify the search is allowed. |
|
Array of attribute names. |
|
An array of filter type values, defined as one of the following:
|
|
Array of boolean strings (true, false). |
|
Name of the Identity Directory Service. |
Example
The following command adds an attribute group
to the Group
entity.
addEntity('Group','group','commonname',true,true,true,true,'name|commonname','none|none','true|false','userrole')
4.1.8 addEntityProps
Adds property for an entity.
Description
Online command that adds new properties for an entity in an entity configuration.
Syntax
addEntityProps(name, propNames, propVals, appName)
Table 4-8 addEntityProps Arguments
Argument | Definition |
---|---|
|
Name of the entity. |
|
List of property names separated by "|". |
|
List of corresponding property values separated by "|". |
|
Name of the Identity Directory Service. |
Example
The following command adds inclobjclasses
and exclobjclasses
properties:
addEntityProps('User','inclobjclasses|exclobjclasses','inetorgperson|orclidxperson','userrole')
4.1.9 addEntityRelation
Online command that adds entity relation to an entity.
Description
Add a new entity relation to the entity configuration for the specified attributes.
Syntax
addEntityRelation(name, type, fromEntity, fromAttr, toEntity, toAttr, recursive, appName)
Table 4-9 addEntityRelation Arguments
Argument | Definition |
---|---|
|
Name of the relation between the entities for the given attributes. |
|
Type of the entity relation ("ManyToMany", "ManyToOne", "OneToMany", "OneToOne"). |
|
Name of the from entity. |
|
Name of the from attribute. |
|
Name of the to entity. |
|
Name of the to attribute. |
|
Flag to set the entity relationship as recursive. |
|
Name of the Identity Directory Service. |
Example
The following command adds the manager
relation between the manager
and User
entities:
addEntityRelation('manager', 'ManyToOne', 'User', 'manager', 'User', 'principal', false, 'userrole')
4.1.10 addIdentityDirectoryService
Online command that adds an Identity Store Service.
Description
Adds a new IdentityStoreService to the Identity Directory Service configuration.
Syntax
addIdentityDirectoryService(name, description, propNames, propValues)
Table 4-10 addIdentityDirectoryService Arguments
Argument | Definition |
---|---|
|
Name of the IdentityStoreService to be added. |
|
Description of the IdentityStoreService. |
|
An array of property names to be added to the IdentityStoreService configuration. |
|
An array of values to be defined for the property names added to the IdentityStoreService configuration. |
Example
The following command adds the userrole
IdentityStoreService:
addIdentityDirectoryService('userrole', 'user role', 'ovd.context|entity.config', 'default|userrole')
4.1.11 addOperationConfig
Online command that adds operation configuration to an entity.
Description
Adds a new operation configuration to the entity configuration.
Syntax
addOperationConfig(entityName, propNames, propValues, appName)
Table 4-11 addOperationConfig Arguments
Argument | Definition |
---|---|
|
Name of the entity to which the operation configuration will be added. |
|
An array of property names to be added to the operation configuration. |
|
An array of property values for the properties added to the operation configuration. |
|
Name of the Identity Directory Service. |
Example
The following command adds the User
entity to which the operation configuration will be added:
addOperationConfig('User', 'entity.searchbase', 'cn=users,dc=oracle,dc=com', 'userrole')
4.1.12 addPropertyForOperationConfig
Online command that adds a property to an operation configuration.
Description
Adds a new property to a specified operation configuration.
Syntax
addPropertyForOperationConfig(entityName, propName, propValue, appName)
Table 4-12 addPropertyForOperationConfig Arguments
Argument | Definition |
---|---|
|
Name of the entity to which the operation configuration will be added. |
|
A property name to be added to the operation configuration. |
|
A value for the property added to the operation configuration. |
|
Name of the Identity Directory Service. |
Example
The following command adds the property to the operation configuration:
addPropertyForOperationConfig('User','entity.searchbase', 'cn=users,dc=oracle,dc=com', 'userrole')
4.1.13 deleteAttributeInEntityConfig
Online command that deletes attribute from an entity.
Description
Deletes an attribute from an entity configuration.
Syntax
deleteAttributeInEntityConfig(name, appName)
Table 4-13 deleteAttributeInEntityConfig Arguments
Argument | Definition |
---|---|
|
Name of the attribute to be deleted. |
|
Name of the Identity Directory Service. |
Example
The following command deletes the commonname
attribute.
deleteAttributeInEntityConfig('commonname', 'userrole')
4.1.14 deleteAttributePropsInEntityConfig
Online command that deletes the properties of an attribute.
Description
Deletes attribute properties in an entity configuration.
Syntax
deleteAttributePropsInEntityConfig(name, propNames, appName)
Table 4-14 deleteAttributePropsInEntityConfig Arguments
Argument | Definition |
---|---|
|
Name of the attribute. |
|
List of property names separated by "|". |
|
Name of the Identity Directory Service. |
Example
The following example deletes the property labelname
from the userrole
entity:
deleteAttributePropsInEntityConfig('orgunit','labelname|multivalued','userrole')
4.1.15 deleteAttrrefPropsInEntityConfig
Online command that deletes attribute reference properties in an entity.
Description
Deletes one or more attribute reference properties in an entity configuration.
Syntax
deleteAttrrefPropsInEntityConfig(entityName, attrName, propNames, appName)
Table 4-15 deleteAttrrefPropsInEntityConfig Arguments
Argument | Definition |
---|---|
|
Name of the entity. |
|
Name of the attribute reference. |
|
List of property names to be deleted. If multiple properties are to be deleted, they should be separated by "|". |
|
Name of the Identity Directory Service. |
Example
The following command deletes two properties from attribute reference orgunit
of entity org
:
deleteAttrrefPropsInEntityConfig('org', 'orgunit','labelname|multivalued','userrole')
4.1.16 deleteEntity
Online command that deletes an entity.
Description
Deletes an entity from an entity configuration.
Syntax
deleteEntity(name, appName)
Table 4-16 deleteEntity Arguments
Argument | Definition |
---|---|
|
Name of the entity to be deleted. |
|
Name of the Identity Directory Service. |
Example
The following command deletes the User
entity.
deleteEntity('User', 'userrole')
4.1.17 deleteEntityProps
Online command that deletes the properties of an entity.
Description
Deletes entity properties in an entity configuration.
Syntax
deleteEntityProps(name, propNames, appName)
Table 4-17 deleteEntityProps Arguments
Argument | Definition |
---|---|
|
Name of the entity. |
|
List of property names separated by "|". |
|
Name of the Identity Directory Service. |
Example
The following command deletes the two properties inclobjclasses
and exclobjclasses
of User
entity:
deleteEntityProps('User','inclobjclasses|exclobjclasses','userrole')
4.1.18 deleteEntityRelation
Online command that deletes the relationship between entities.
Description
Deletes the specified entity relation between entities for the given attributes.
Syntax
deleteEntityRelation(name, appName)
Table 4-18 deleteEntityRelation Arguments
Argument | Definition |
---|---|
|
Name of the relation between the entities for the given attributes. |
|
Name of the Identity Directory Service. |
Example
The following command deletes the manager
relation specified between entities:
deleteEntityRelation('manager', 'userrole')
4.1.19 deleteIdentityDirectoryService
Online command that deletes the specified IdentityStoreService.
Description
Deletes the specified IdentityStoreService in the Identity Directory Service configuration.
Syntax
deleteIdentityDirectoryService(name)
where name is the name of the IdentityStoreService configuration to be deleted.
Example
The following example deletes ids1
IdentityStoreService configuration.
deleteIdentityDirectoryService('ids1')
4.1.20 deleteOperationConfig
Online command that deletes an operation configuration.
Description
Deletes an operation configuration in an entity configuration.
Syntax
deleteOperationConfig(entityName, appName)
Table 4-19 deleteOperationConfig Arguments
Argument | Definition |
---|---|
|
Name of the entity from which the operation configuration will be removed. |
|
Name of the Identity Directory Service. |
Example
The following command deletes the operation configuration associated with entity User
and application userrole
:
deleteOperationConfig('User','userrole')
4.1.21 listAllAttributeInEntityConfig
Online command that lists all attributes.
Description
Lists all attributes in the entity configuration.
Syntax
listAllAttributeInEntityConfig(appName)
where appName is the name of the Identity Directory Service that contains the entity configuration from which the list of attributes is retrieved.
Example
The following command obtains the list of attributes from userrole
entity:
listAllAttributeInEntityConfig('userrole')
4.1.22 listAllEntityInEntityConfig
Online command that lists all entities for an entity configuration.
Description
Lists all entities defined in the specified entity configuration.
Syntax
listAllEntityInEntityConfig(appName)
where appName is the name of the Identity Directory Service that contains the entity configuration from which the list of entities is retrieved.
Example
The following command obtains the list of entities associated with userrole
entity:
listAllEntityInEntityConfig('userrole')
4.1.23 listAllIdentityDirectoryService
Online command that lists all IdentityStoreService for an Identity Directory Service configuration.
Description
Lists all IdentityStoreService in Identity Directory Service configuration.
Syntax
listAllIdentityDirectoryService()
This command has no arguments.
Example
The following command lists all the IdentityStoreService for an Identity Directory Service configuration:
listAllIdentityDirectoryService()
4.1.24 removeAttributeRefForEntity
Online command that deletes an attribute from an entity.
Description
Removes an attribute from the specified entity.
Syntax
removeAttributeRefForEntity(name, attrRefName, appName)
Table 4-20 removeAttributeRefForEntity Arguments
Argument | Definition |
---|---|
|
Name of the entity from which the attribute will be removed. |
|
The name of the attribute to be removed. |
|
Name of the Identity Directory Service. |
Example
The following command deletes the givenname
attribute associated with User
entity:
removeAttributeRefForEntity('User','givenname','userrole')
4.1.25 removeCommonPropertyForOperationConfig
Online command that deletes a property for an operation configuration.
Description
Removes a property for the specified operation configuration.
Syntax
removeCommonPropertyForOperationConfig(entityName, propName, appName)
Table 4-21 removeCommonPropertyForOperationConfig Arguments
Argument | Definition |
---|---|
|
Name of the entity. |
|
Name of property to be removed for this operation configuration. |
|
Name of the Identity Directory Service. |
Example
The following command removes groupmember.attr
property associated with User
entity:
removeCommonPropertyForOperationConfig('User','groupmember.attr','userrole')
4.1.26 removePropertyForOperationConfig
Online command that removes a property for an operation configuration.
Description
Removes a property for the specified operation configuration.
Syntax
removePropertyForOperationConfig(entityName, propName, appName)
Table 4-22 removePropertyForOperationConfig Arguments
Argument | Definition |
---|---|
|
Name of the entity from which the operation configuration will be removed. |
|
A property name to be removed from the operation configuration. |
|
Name of the Identity Directory Service. |
Example
The following command removes entity.searchbase
property associated with User
entity:
removePropertyForOperationConfig('User','entity.searchbase','userrole')
4.1.27 updateAttributeInEntityConfig
Online command that updates an attribute for an entity configuration.
Description
Updates attributes in an entity configuration.
Syntax
updateAttributeInEntityConfig(name, attrNames, attrVals, appName)
Table 4-23 updateAttributeInEntityConfig Arguments
Argument | Definition |
---|---|
|
Name of the entity attribute to be updated. |
|
List of configuration attribute names separated by "|". Valid configuration attribute names are:
|
|
List of corresponding attribute values separated by "|". |
|
Name of the Identity Directory Service. |
Example
The following command updates the commonname
attribute:
updateAttributeInEntityConfig('commonname','readOnly|pwdAttr|attrInUse','true|false|false','userrole')
4.1.28 updateAttributePropsInEntityConfig
Online command that updates the properties of an attribute for an entity.
Description
Updates attribute properties in an entity configuration.
Syntax
updateAttributePropsInEntityConfig(name, propNames, propVals, appName)
Table 4-24 updateAttributePropsInEntityConfig Arguments
Argument | Definition |
---|---|
|
Name of the attribute to be updated. |
|
List of property names separated by "|". |
|
List of corresponding property values separated by "|". |
|
Name of the Identity Directory Service. |
Example
The following command updates the properties for orgunit
attribute associated with userrole
application:
updateAttributePropsInEntityConfig('orgunit','multivalued','multivalued','userrole')
4.1.29 updateAttrrefPropsInEntityConfig
Online command that updates attribute reference properties for an entity.
Description
Updates attribute reference properties in an entity configuration.
Syntax
updateAttrrefPropsInEntityConfig(entityName, attrName, propNames, propVals, appName)
Table 4-25 updateAttrrefPropsInEntityConfig Arguments
Argument | Definition |
---|---|
|
Name of the entity. |
|
Name of the attribute reference. |
|
List of property names separated by "|". |
|
List of corresponding property values separated by "|". |
|
Name of the Identity Directory Service. |
Example
The following command updates the attribute reference properties:
updateAttrrefPropsInEntityConfig('org', 'orgunit','entity.searchbase','multivalued','userrole')
4.1.30 updateEntity
Online command that updates properties of an entity.
Description
Updates an entity's properties in an entity configuration.
Syntax
updateEntity(name, type, idAttr, create, modify, delete, search, appName)
Table 4-26 updateEntity Arguments
Argument | Definition |
---|---|
|
Name of the entity to be updated. |
|
Type of the entity. |
|
Identity attribute of the entity. |
|
Flag to specify the create is allowed. |
|
Flag to specify the modify is allowed. |
|
Flag to specify the delete is allowed. |
|
Flag to specify the search is allowed. |
|
Name of the Identity Directory Service. |
Example
The following command updates the properties associated with Group
entity:
updateEntity('Group','group','commonname',true,true,true,true,'userrole')
4.1.31 updateEntityAttrs
Online command that updates the configuration attributes for an entity.
Description
Updates the configuration attributes for an entity attribute.
Syntax
updateEntityAttrs(name, attrNames, attrVals, appName)
Table 4-27 updateEntityAttrs Arguments
Argument | Definition |
---|---|
|
Name of the entity attribute. To update the properties of an entity attribute, see updateAttributePropsInEntityConfig. |
|
List of configuration attribute names. If multiple configuration attributes are to be updated, they should be separated by "|". Valid configuration attribute names are:
|
|
List of corresponding configuration attribute values separated by "|". |
|
Name of the Identity Directory Service. |
Example
The following command updates configuration attributes associated with User
entity:
updateEntityAttrs('User','idAttr|firstnameAttr','uid|givenname','userrole')
4.1.32 updateEntityProps
Online command that updates the properties of an entity.
Description
Updates the entity properties in an entity configuration.
Syntax
updateEntityProps(name, propNames, propVals, appName)
Table 4-28 updateEntityProps Arguments
Argument | Definition |
---|---|
|
Name of the attribute to be updated. |
|
List of property names separated by "|". |
|
List of corresponding property values separated by "|". |
|
Name of the Identity Directory Service. |
Example
The following command updates the properties associated with User
entity:
updateEntityProps('User','inclobjclasses|exclobjclasses','inetorgperson|orclidxperson','userrole')
4.1.33 deleteAttributePropsInEntityConfig
Online command that deletes the attribute properties in an entity configuration.
Description
Deletes the attribute properties in an entity configuration.
Syntax
deleteAttributePropsInEntityConfig(name, propNames, appName)
Table 4-29 deleteAttributePropsInEntityConfig
Argument | Definition |
---|---|
|
Name of the attribute to be deleted. |
|
List of property names separated by "|". |
|
Name of the Identity Directory Service. |
Example
The following command deletes the attribute property, orgunit
from the userrole
.
deleteAttributePropsInEntityConfig('orgunit','labelname|validvalues','userrole')
4.1.34 dumpConnectionPoolStatsForInMemoryConfig
Online command that dumps the LDAP connection pool statistics for the associated in-memory IDS configuration for the current JVM on which WLS is configured into a specified file.
Description
Dumps the LDAP connection pool statistics for the associated in-memory IDS configuration for the current JVM on which WLS is configured into a specified file.
Syntax
dumpConnectionPoolStatsForInMemoryConfig(name, fileName)
Table 4-30 dumpConnectionPoolStatsForInMemoryConfig
Argument | Definition |
---|---|
|
Name of the in-memory IDS configuration. |
|
Refers to the full path of the file. |
Example
The following example dumps the connection pool statistics for the in-memory IDS configuration ids1
into the specified file:
dumpConnectionPoolStatsForInMemoryConfig('ids1', '/tmp/dump.txt')
4.1.35 dumpConnectionPoolStatsForAllInMemoryConfig
Online command that dumps the LDAP connection pool statistics for all in-memory IDS configuration for the current JVM on which WLS is configured into a specified file.
Description
Dumps the LDAP connection pool statistics for all in-memory IDS configuration for the current JVM on which WLS is configured into a specified file.
Syntax
dumpConnectionPoolStatsForAllInMemoryConfig(fileName)
Table 4-31 dumpConnectionPoolStatsForAllInMemoryConfig
Argument | Definition |
---|---|
|
Refers to the full path of the file. |
Example
The following example dumps LDAP connection pool statistics for all in-memory IDS configuration into the specified file:
dumpConnectionPoolStatsForAllInMemoryConfig('/tmp/dump.txt')
4.1.36 dumpConnectionPoolStatsForAllFileBasedConfig
Online command that dumps the LDAP connection pool statistics for all file-based IDS configuration for the current JVM on which WLS is configured into a specified file.
Description
Dumps the LDAP connection pool statistics for all file-based IDS configuration for the current JVM on which WLS is configured into a specified file.
Syntax
dumpConnectionPoolStatsForAllFileBasedConfig(name, fileName)
Table 4-32 dumpConnectionPoolStatsForAllFileBasedConfig
Argument | Definition |
---|---|
|
Name of the file-based IDS configuration. |
|
Refers to the full path of the file. |
Example
The following example dumps the connection pool statistics for ids file-based configuration into the specified file:
dumpConnectionPoolStatsForFileBasedConfig('ids1', '/tmp/dump.txt')
4.1.37 dumpConnectionPoolStatsForAllFileBasedConfig
Online command that dumps the LDAP connection pool statistics for all file-based IDS configuration in the current JVM on which WLS is configured into a specified file.
Description
Dumps the LDAP connection pool statistics for all file-based IDS configuration for the current JVM on which WLS is configured into a specified file.
Syntax
dumpConnectionPoolStatsForAllFileBasedConfig(fileName)
Table 4-33 dumpConnectionPoolStatsForAllFileBasedConfig
Argument | Definition |
---|---|
|
Refers to the full path of the file. |
Example
The following example dumps the connection pool statistics all file-based IDS configuration into the specified file:
dumpConnectionPoolStatsForFileBasedConfig('/tmp/dump.txt')