Disable user CAPTCHAs from the JIRA database
Steps
Always back up your data before performing any modification to the database. If possible, try your modifications on a test server.
- Shutdown your JIRA application.
Execute the following SQL to identify the record to update:
SELECT s.* FROM propertyentry e JOIN propertystring s ON e.id = s.id WHERE property_key = 'jira.maximum.authentication.attempts.allowed';
And run the following SQL to set that record to an empty string, which is the equivalent of unlimited authentication attempts, bypassing CAPTCHA validation:
UPDATE propertystring SET propertyvalue = '' WHERE id = <id from step 2>;
- Start JIRA application.
Additionally our How to reset failed login count from a JIRA application database KB may be of assistance.
This approach will disable CAPTCHA for all Jira users. To disable CAPTCHA for specific users, we have raised the following feature request ticket: JRASERVER-40362 - Getting issue details... STATUS
Currently, CAPTCHA can not be disabled on Oracle databases. There is an open JAC ticket that can be voted on and watched for more information:
JRA-41240 - Getting issue details... STATUS