Delete Users
This article explains how to delete system administration users.
These are EXAoperation users, not database users.
Delete a user in EXAoperation
- In EXAoperation, select Configuration > Access Management.
- In the Users tab, select the user you want to delete and click Delete.
Delete a user using XML-RPC
- Run the following commands to import the XML-RPC packages:
- Run the following command to create a connection with your Exasol cluster:Copy
import ssl
server = ServerProxy ('https://user:password@<IP_Address>/cluster1', context=ssl._create_unverified_context (), allow_none = True) - Run any of the following commands to delete a user.Copy
server.deleteUserByLogin('<user login name>')
#or
server.deleteUserByID('<userID>')
from xmlrpc.client import ServerProxy
from xmlrpc.client import ServerProxy as xmlrpc