QC ALM How to reset password for Site Admin User?
Question ID: 105012
1
0

We’ve lost track of our Site Admin user’s password and can no longer access Site Administrator. How can we reset that user’s password?

Marked as spam
Posted by (Questions: 424, Answers: 91)
Asked on May 14, 2013 3:29 pm
984 views
Answers (1)
2
Private answer

In the database, you can set the password for a Site Administrator user to NULL. This will allow you to log in to the Quality Center Site Administrator by just specifying the Quality Center Admin User Name. Once logged in, you can change the password to whatever you wish. This is assuming you're using Quality Center authentication rather than LDAP.

If needed, run this query first to provide you with the list of users that are Site Administrators:

SELECT * FROM td.USERS u
INNER JOIN td.USERS_ROLES ur
ON u.USER_ID = ur.UR_USER_ID
INNER JOIN td.ROLES r
ON UR_ROLE_ID = r.RT_ROLE_ID
WHERE RT_ROLE_ID = 10

Once you know which Site Administrator user you want to change, run this query to set their password to NULL (replacing `YOUR_QC_ADMIN_USER_NAME_HERE` with the correct user name):

UPDATE td.USERS
SET USER_PASSWORD = ''
WHERE USER_NAME = 'YOUR_QC_ADMIN_USER_NAME_HERE'

Restart the HP Quality Center service.

Log into Site Admin using the user (leave password blank).

Marked as spam
Posted by (Questions: 0, Answers: 771)
Answered on May 14, 2013 3:34 pm
0
That did it! I can now get into Site Administrator and update my site admin user's password.
( at May 14, 2013 3:35 pm)
EyeOnTesting

Welcome back to "EyeOnTesting" brought to you by Orasi Software, Inc.

X
Scroll to Top