Administrators may observe repeated authentication failures for a web service administrator account in the arcotuds.log file. The error indicates the account is locked due to exceeding the maximum failed login attempts.
In arcotuds.log:
Authentication failed. com.arcot.admin.framework.auth.AuthenticationException:
Administrator '*** (Organization: ***)' account is locked.Authentication Result for Administrator '*** (Organization: ***)': failed.
Maximum attempts exceeded, Administrator account is lockedCA Advanced Authentication
UPDATE ARADMINBASICAUTHUSER
SET STRIKECOUNT = 0
WHERE USERID = ' <User>'
AND ORGNAME = '<Org name>';
COMMIT;
Create a dedicated service account specifically for web service authentication and apply a more appropriate lockout policy (or exclude it from aggressive lockout if security policy allows).
If the issue persists after following the steps above, collect following information and open a support case:
SELECT USERID, ORGNAME, STRIKECOUNT, PASSWDRESETTIME
FROM ARADMINBASICAUTHUSER
WHERE USERID = '<user>';