Admin User Maintenance
Admin users are responsible for managing system access and security in SEI. If the ADMIN account becomes locked or needs a password reset, follow the instructions below to restore access and verify account details.
Unlock the admin user
If a SEI user enters the wrong password five times, the account is locked.
With another admin account
Use these steps if at least one other administrator still has Security privileges.
- Log in to SEI using that account.
- In the navigation panel, select the gear icon to open Administration.
- Select Security, then Users.
- Select the ADMIN user.
- Click the Unlock icon.
Without another admin account
Use these steps if the ADMIN account is the only administrator and it is locked.
- Open Microsoft SQL Server Management Studio and connect to your SQL Server.
- Select the SEI database, typically named
NectariorSEI. - Start a new query and run:
SELECT USERNAME, IS_LOCKED_OUT, FAILED_PASSWORD_ATTEMPT_COUNT
FROM [Nectari].[dbo].[SEC_USERS]
WHERE USERNAME= 'ADMIN' - If
IS_LOCKED_OUTis not0orFAILED_PASSWORD_ATTEMPT_COUNTis not0, reset them:UPDATE [Nectari].[dbo].[SEC_USERS]
SET IS_LOCKED_OUT = 0,
FAILED_PASSWORD_ATTEMPT_COUNT = 0
FROM [Nectari].[dbo].[SEC_USERS]
WHERE USERNAME = 'ADMIN' - Log in to SEI as ADMIN using the current password.
If the password is unknown, follow the instructions below to reset it.
Reset admin password
If you don’t remember the ADMIN password, use the Forgot Password link on the SEI login window. For password reset to be successful, make sure a valid email is configured for the ADMIN account.
Verify or update the admin email
- Open Microsoft SQL Server Management Studio and connect to your database.
- Locate the SEI database, typically named
NectariorSEI. - Start a new query and run:
SELECT EMAIL FROM [Nectari].[dbo].[SEC_USERS] WHERE USERNAME = 'ADMIN' - If you need to change the ADMIN email address, run:
UPDATE [Nectari].[dbo].[SEC_USERS]
SET EMAIL = 'ValidEmail@yourcompany.com'
WHERE USERNAME = 'ADMIN' - Make sure this email address is valid and accepted by your company’s SMTP server so password reset emails can be delivered. The SMTP settings used by SEI must be correctly configured: update them in the Web Central Point Configurator or check the
<smtp server="..."/>value in thenec-centralpoint.xmlfile.