Hi @plummer6699,
The issue related to the "Administrator" account being locked is that there were multiple attempts to access the server which caused the account to lock itself.
To unlock the account, you will need to execute the below steps and execute a few queries in the database.
1. Login into the database as an admin user.
2. Now locate the Super Admin account using the following SQL: SELECT * FROM adobe.edcprincipalentity where canonicalname = ‘SuperAdmin’;
3. You should see the column countauthfailure has a number > 20 and islocked is set to 1 (locked)
4. Now you can either use the GUI to change the value or run the following SQL: UPDATE adobe.edcprincipalentity SET islocked = 0 WHERE canonicalname = ‘SuperAdmin’;
5. You should be able to log in to your Super Administrator account now.
It’s probably a good idea to create a second Super Administrator account just in case this happens again.
Thanks
Pranay