
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Hi,
When I try to login to the Administrative portal with local Admin account, I get Password has expired.
Unfortunately, I can't login to the Enrollment portal to reset the Password because Authenticators Management events has only LDAP Password + SMS OTP chain. It seems the Password Only method for the Authenticators Management events was removed. Access has been denied. I know ☹
I tried a solution 2a in TID 7023511 but the account is still locked.
Is there any other solution to set the local admin password?
Or maybe to add the Password Only method for the Authenticators Management in the docker console?
AAUTH Version: 6.3.3.0.
Best regards,
Rok
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
The documented instructions are not for that case, because they do not reset the “expired” flag. Below are the instructions for you.
It’s strongly recommended to create a snapshot before following the steps.
- Get Event ID for the Authenticators Management event:
docker exec aaf_audb_1 psql -U root -d aucore_prod -P pager=off -c "SELECT id from event WHERE name='Authenticators Management';"
- Get Chains assigned to the Authenticators Management event:
docker exec aaf_audb_1 psql -U root -d aucore_prod -P pager=off -c "SELECT * from event_logon_chain WHERE event_id='___EVENT_ID_FROM_STEP_1___';"
Please take a look on the number of rows at the bottom.
- Get Chain ID for the Password Only chain:
docker exec aaf_audb_1 psql -U root -d aucore_prod -P pager=off -c "SELECT id, name, methods from logon_chain WHERE name='Password Only';"
- Add the Password Only chain to the Authenticators Management event:
docker exec aaf_audb_1 psql -U root -d aucore_prod -P pager=off -c "insert into event_logon_chain (event_id, logon_chain_id, position, row_ver) values ('___VALUE_FROM_STEP_1____', '___VALUE_FROM_STEP_3____', '___NUMBER OF ROWS FROM STEP_2___', '2021-01-01 00:00:00.00000');"
This should add the chain to the next row.
- Now, it should be possible to login by the actual password (I believe, the changed one) to the Authenticators Management event to change the password

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
The documented instructions are not for that case, because they do not reset the “expired” flag. Below are the instructions for you.
It’s strongly recommended to create a snapshot before following the steps.
- Get Event ID for the Authenticators Management event:
docker exec aaf_audb_1 psql -U root -d aucore_prod -P pager=off -c "SELECT id from event WHERE name='Authenticators Management';"
- Get Chains assigned to the Authenticators Management event:
docker exec aaf_audb_1 psql -U root -d aucore_prod -P pager=off -c "SELECT * from event_logon_chain WHERE event_id='___EVENT_ID_FROM_STEP_1___';"
Please take a look on the number of rows at the bottom.
- Get Chain ID for the Password Only chain:
docker exec aaf_audb_1 psql -U root -d aucore_prod -P pager=off -c "SELECT id, name, methods from logon_chain WHERE name='Password Only';"
- Add the Password Only chain to the Authenticators Management event:
docker exec aaf_audb_1 psql -U root -d aucore_prod -P pager=off -c "insert into event_logon_chain (event_id, logon_chain_id, position, row_ver) values ('___VALUE_FROM_STEP_1____', '___VALUE_FROM_STEP_3____', '___NUMBER OF ROWS FROM STEP_2___', '2021-01-01 00:00:00.00000');"
This should add the chain to the next row.
- Now, it should be possible to login by the actual password (I believe, the changed one) to the Authenticators Management event to change the password

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Dear George,
thank you very much for your instructions. That’s exactly what I had in mind.
I added the Password Only chain for the Authenticators Management events according to your instructions.
It works! Now I can login to the Enrollment portal to reset the local admin Password.,
Next step is to add the domain admin user to the full admins group 😊.
Best regards,
Rok