This applies to: 3.0.x and below (steps may vary slightly for 3.5.x and greater)
High-Level Summary: How to regain access to your admin account if it loses its System Admin role or the password is changed.
There are a few situations that can render your admin account unusable: It's disabled, the password is changed, or the System Admin role is removed. Ideally, you'd log into a second System Admin account to fix this through the Admin Console. In the case that admin was your only System Admin, here are the steps to fix it:
UPDATE jiveUser SET userEnabled = 1 WHERE userID = 1;
UPDATE jiveUser SET passwordHash = '5ca18bf6852bacbb8fe557a3673f778d1f83b51f3cdbced4b6f9668d85f04ad9', creationDate = 1238458204921 WHERE userID = 1;
INSERT INTO jiveUserPerm VALUES (17, -1, 1, 1, 59);
There are no comments on this document