Delete Users

This article explains how to delete system administration users.

These are EXAoperation users, not database users.

Delete a user in EXAoperation

  1. In EXAoperation, select Configuration > Access Management.
  2. In the Users tab, select the user you want to delete and click Delete.

    Delete a user in Exasol

Delete a user using XML-RPC

  1. Run the following commands to import the XML-RPC packages:
  2. Copy
    from xmlrpc.client import ServerProxy
    from xmlrpc.client import ServerProxy as xmlrpc

  3. 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)
  4. Run any of the following commands to delete a user.
    Copy
    server.deleteUserByLogin('<user login name>')
    #or
    server.deleteUserByID('<userID>')