Admin User Maintenance
If a SEI user enters the wrong password five times, the account is locked out.
Unlock the ADMIN user
If the ADMIN account is locked:
If another admin account with Security privileges is available
- Log in to the SEI Web Server 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.
If no admin account is available
- 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 not known, follow the instructions below to reset it.
Reset SEI 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, run:
UPDATE [Nectari].[dbo].[SEC_USERS]
SET EMAIL = '[email protected]'
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.