Is there a way to tell which Authentication Manager instance is primary without actually having to log into its Security or Operations Console? I'm looking for a way to make it easier for end users to access the Self-Service Console, and for Help Desk users to always log into the correct instance. It was brought to my attention, after promoting a replica to primary, that they had set up redirect URLs for these purposes, and my change broke them.
By themselves, no, there isn't a way to do this unless you have external tools, command line, or API's set up which can get the information.
You will need to log into something, and check.
-SNMPv3 get might be on OID .1.3.6.1.4.1.2197.20.21.1.4 Instance Description
-Database SQL query can do it ...True = primary
select a.host, a.ip, b.is_primary
from rsa_rep.ims_instance_node a,
rsa_rep.ims_instance b
where a.instance_id = b.id;