Using the default admin user and password unable to log in to the Performance Center UI
Unable to log in to the DX NetOps Portal web UI using the system default admin user.
All supported DX NetOps Performance Management Portal web server releases
If the default password doesn't work, one of two things may have happened.
The only way to resolve this is with two MySql queries against the netqosportal DB on the PC host.
REST can't be used at this point since it relies on the admin users log in details to engage the PC host for REST based requests.
Solution for Cause #1: Authentication type changed
To resolve cause number 1 above where the admin users authentication was changed, we will need to update both the Authentication Type and the password for the default admin user to resolve this. This is because when the Authentication Type is set to External, the users password is reset to the encrypted form of a blank password.
In that situation complete the following:
We should now be able to once more log in to the PC UI as the default admin user using the default password "admin".
Solution for Cause #2: Unknown password, reset required
To resolve cause number 2 we simply reset the admin users password. It's the same solution as above, minus the command to change the authentication type.
In that situation complete the following:
If still unable to log in to PC/Portal web page, review the /opt/CA/PerformanceCenter/PC/logs/PCService.log file. In case you have entry like this:
WARN | qtp263696733-28 | 2023-03-01 09:48:03,771 | com.ca.im.portal.services.user.UserAuthenticationServiceImpl
| Unable to determine auth type for user 'admin' -- UserAuthentication - Account is disabled.
Run these MySQL commands:
select UserLevel, Name, Enabled from user_definitions where Name = 'Admin';
UPDATE user_definitions SET Enabled = 'Y', UserLevel = '1' where UserId = '1';
OR follow the steps from KB: https://knowledge.broadcom.com/external/article?articleId=248358