Network Deployment (Distributed operating systems), v8.0 > Secure applications and their environment > Authenticate users > Select a registry or repository > Configure LDAP user registries
Delete LDAP endpoints using wsadmin
We can delete LDAP endpoints for a user registry by using the WAS administrative tool (wsadmin).
Procedure
- Start the wsadmin scripting tool.
- Set the LDAP variable and display a list of LDAP endpoint objects. Enter the following commands:
### Jacl
set ldap [$AdminConfig list LDAPUserRegistry] $AdminConfig list EndPoint $ldap### Jython
ldap=AdminConfig.list["LDAPUserRegistry"] print AdminConfig.show(ldap)For the Jython language, you can obtain the endpoint from the host variable after running the previous command.
- Display a list of LDAP endpoint objects. Enter the following command for each object:
### Jacl
$AdminConfig showall End_Point_Object### Jython
AdminConfig.showall("End_Point_Object")
- Delete an LDAP endpoint object. Enter the following command:
### Jacl
$AdminConfig remove End_Point_Object### Jython
AdminConfig.remove ("End_Point_Object")
- Save the configuration changes: Enter the following command:
### Jacl
$AdminConfig save### Jython
AdminConfig.save()
Test an LDAP server for user registry failover
Configure LDAP user registries