- JIRA 6.x Administration Cookbook
- Patrick Li
- 438字
- 2021-12-08 12:37:31
Resetting the JIRA administrator password
Sometimes, you might forget or lose the password to the account with the JIRA Administrator or JIRA System Administrator permission, and you cannot retrieve it using the password-reset option. For example, suppose JIRA does not have an SMTP server configured, or you are restoring JIRA from a data dump and do not know the account and/or password. In these cases, you need to reset the administrator password directly in the database.
Note
This recipe only applies to JIRA instances that use the default internal user directory option. External user management such as LDAP will not work with this recipe.
Getting ready
Since we will reset the password in JIRA's database, make sure you do the following:
- Connect to the JIRA database either via the command line or a GUI
- Update the JIRA database records
How to do it…
Let's assume we use the default mysql
command-line tool and MySQL as the backend database for JIRA. If you are using a different database, you may need to change the following SQL statements accordingly:
- Connect to the JIRA database with a client tool by running the
mysql -u jirauser -p
command, wherejirauser
is the username to access the JIRA database.Tip
You can find JIRA's database details from the
dbconfig.xml
file located atJIRA_HOME
. - Change to the JIRA database by running the
use jiradb
command, wherejiradb
is the name of JIRA's database. - Determine the groups that have the JIRA System Administrators global permission with the following SQL statement:
select perm_parameter from schemepermissions where PERMISSION=44;
- Find users that belong to the groups returned in step 3 using the following SQL statement, where
jira-administrators
is a group returned from step 3:select child_name, directory_id from cwd_membership where parent_name='jira-administrators';
- Reset the user's password in the database with the following SQL statement, where
admin
is a user returned in step 4:update cwd_user set credential='uQieO/1CGMUIXXftw3ynrsaYLShI+GTcPS4LdUGWbIusFvHPfUzD7CZvms6yMMvA8I7FViHVEqr6Mj4pCLKAFQ==' where user_name='admin';
- Restart JIRA to apply the change.
How it works…
With JIRA's internal user directory, all the user and group data are stored in the JIRA database. The value 44
is the ID for the JIRA System Administrators global permission.
If you do not know what groups or users have been granted the JIRA System Administrators global permission, we will first have to find this information using steps 3 and 4. Otherwise, you can skip to step 5 in order to reset the password.
JIRA's user password information is stored in the cwd_user
table. Since JIRA only stores the hash value of the password, we changed the user's admin
password to uQieO/1CGMUIXXftw3ynrsaYLShI+GTcPS4LdUGWbIusFvHPfUzD7CZvms6yMMvA8I7FViHVEqr6Mj4pCLKAFQ==
, which is the hash value of sphere
.
- 中國國民經(jīng)濟(jì)核算體系修訂問題研究
- Magento 2 Cookbook
- Microsoft Dynamics NAV Financial Management
- 中國特色社會主義國家審計制度研究
- 注冊會計師全國統(tǒng)一考試專用教材:審計
- EViews10.0的應(yīng)用與計量分析
- Business Intelligence with MicroStrategy Cookbook
- Metabase Up and Running
- 國家治理能力視角的國家審計功能理論研究
- SAP ABAP Advanced Cookbook
- 《企業(yè)內(nèi)部控制基本規(guī)范》合規(guī)實(shí)務(wù)指南
- Microsoft Dynamics NAV
- 新編統(tǒng)計學(xué)
- 看穿一切數(shù)字的統(tǒng)計學(xué)
- QlikView for Developers Cookbook