Disable user CAPTCHAs from the JIRA database
手順
データベースの変更を行う場合は 必ず事前にバックアップを取得してください。可能な場合はテスト サーバーで変更を試すことをおすすめします。
- 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 Allow administrators to disable CAPTCHA for specific users
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:
JRASERVER-41240 Unable to set Maximum Authentication Attempts Allowed to Unlimited on Oracle DB