It appears someone disabled "Policy Manager access" so now we are unable to login using the policy manager.
Is there anyway to re-enable this via command line or external of using policy manager?
All supported versions of the CA API Gateway
This is stored in the ssg database
Review the following instructions,
# mysql ssg
mysql> select name, port, endpoints from connector where port = '8443';
On my system this gives me,
| Default HTTPS (8443) | 8443 | MESSAGE_INPUT,ADMIN_REMOTE_ESM,ADMIN_REMOTE_SSM,ADMIN_APPLET,OTHER_SERVLETS |
Assuming your missing the ADMIN_REMOTE_SSM entry
You can just do the select then add this value to an update.
update connector set endpoints = 'MESSAGE_INPUT,ADMIN_REMOTE_ESM,ADMIN_REMOTE_SSM,ADMIN_APPLET,OTHER_SERVLETS' where port = '8443';
This should enable policy manager access back on port 8443 or if you require access on port 9443 then change the port above to 9443.