Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
JIRA 7 Administration Cookbook

You're reading from   JIRA 7 Administration Cookbook Over 80 hands-on recipes to help you efficiently administer, customize, and extend your JIRA 7 implementation

Arrow left icon
Product type Paperback
Published in May 2016
Publisher
ISBN-13 9781785888441
Length 264 pages
Edition 2nd Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Patrick Li Patrick Li
Author Profile Icon Patrick Li
Patrick Li
Arrow right icon
View More author details
Toc

Table of Contents (10) Chapters Close

Preface 1. JIRA Server Administration 2. Customizing JIRA for Your Projects FREE CHAPTER 3. JIRA Workflows 4. User Management 5. JIRA Security 6. E-mails and Notifications 7. Integrations with JIRA 8. JIRA Troubleshooting 9. JIRA Service Desk

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 restore 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 the JIRA instances that use the default internal user directory option. External user management, such as LDAP, will not work with this recipe.

Getting ready

As 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
  • Update the JIRA database

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:

  1. Connect to the JIRA database with a client tool by running the mysql -u jirauser -p command, where jirauser is the username used by JIRA to access the JIRA database.
  2. You can find JIRA's database details from the dbconfig.xml file located in JIRA_HOME.
  3. Change to the JIRA database by running the use jiradb command, where jiradb is the name of JIRA's database.
  4. Determine the groups that have the JIRA System Administrators global permission with the following SQL statement:
            select perm_parameter from 
            schemepermissions where PERMISSION=44;
    
  5. Find users that belong to the groups returned in STEP 4 by running the following SQL statement, where jira-administrators is a group returned from STEP 4:
            select child_name, directory_id
            from cwd_membership where
            parent_name='jira- administrators';
    

    Note

    The jira-administrators group is the default group that administrators belong to. You might get a different group if you customize the permission configurations.

    The table column for the username is child-name.

  6. Reset the user's password in the database with the following SQL statement, where admin is a user returned in STEP 5:
            update cwd_user set
            credential='uQieO/1CGMUIXXftw3ynrsaYLShI+
            GTcPS4LdUGWbIusFvHPfUzD7
            CZvms6yMMvA8I7FViHVEqr6Mj4pCLKAFQ==' where
            user_name='admin';
  7. Restart JIRA to apply the change.

How it works...

With JIRA's internal user directory, all the user and group data is stored in the JIRA database. The value 44 is the ID of the JIRA System Administrators global permission.

If you do not know which groups or users are granted the JIRA System Administrators global permission, we will first have to find this information using STEP 4 and STEP 5. Otherwise, you can skip to STEP 6 in order to reset the password.

JIRA's user password information is stored in the cwd_user table. As JIRA only stores the hash value of the password, we changed the user's admin password to uQieO/1CGMUIXXftw3ynrsaYLShI+GTcPS4LdUGWbIusFvHPfUzD7CZvms6yMMvA8I7FViHVEqr6Mj4pCLKAFQ==, which is the UTF-8-encoded hash value of sphere.

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image