Welcome to Headwind MDM Q&A, where you can ask questions and receive answers from other members of the community.

Please do not post bug reports, missing feature requests, or demo inquiries. If you have such an inquiry, submit a contact form.

0 votes
I created a Superadmin  account. I want to close this account, how can I do that?
by (360 points)

1 Answer

0 votes

Superadmin account cannot be removed directly.

You need to change its role to Admin or any other prior to removing.

To do that, open the PostgreSQL connection to the Headwind MDM database, then run the command:

    update users set userroleid=2 where login='....';

(use the login of the superadmin account in the expression).

This will make this user an Admin instead of Superadmin, and it can be removed by another admin.

by (33.4k points)
...