+

Search Tips   |   Advanced Search

Remove resources from security domains using scripting


Use this topic to remove management resources from security domains. Remove all resources from a security domain before deleting the security domain from the configuration.

Users assigned to the administrator role can configure security domains. Verify that we have the appropriate admin role before configuring security domains.

 

  1. Launch the wsadmin scripting tool using the Jython scripting language.

  2. Determine the security domain to edit. Use the listSecurityDomains command to view a list of security domains in the configuration. Specify true for the optional -listDescription parameter to list the description for each security domain, as the following Jython example demonstrates:

    print AdminTask.listSecurityDomains('-listDescription true')

    The command returns the following example output:

    myDomain - security domain for admin applications domain2 - new domain for cell123

  3. Verify the management resources that are assigned to the security domain. Use the listResourcesInSecurityDomain command to view a list of resources that are mapped to the security domain of interest, as the following Jython example demonstrates:

    print AdminTask.listResourcesInSecurityDomain('-securityDomainName domain2')

    The command returns the following example output:

    "Cell=Cell01"

  4. Remove the resource from the security domain. Use the removeResourceFromSecurityDomain command to remove a management resource from the security domain. For example, use the following Jython command to remove the Cell01 cell resource from the domain2 security domain:

    AdminTask.removeResourceFromSecurityDomain('-securityDomainName domain2 -resourceName Cell=Cell01')

  5. Save the configuration changes...

    AdminConfig.save()

 

What to do next

Restart each management resource that you removed from a security domain.

 

Related tasks


Manage servers and nodes with scripting

 

Related information


Remove security domains using scripting