How to count the used licenses for CA Strong Authentication if we have two or more Organizations created in your CA Strong Authentication environment?
CA Strong Authentication ( Arcot WebFort)
CA Risk Authentication ( Arcot RiskFort)
Release : 9.x and Onwards
Request For Information (RFI)
CA Strong Authentication does not have Licensing capabilities in-built into the product. To get the number of licenses the customer needs to run the query against the database and find out this required information.
If user base is in the database (Oracle DB or MS SQL Server DB), below query can be run -
select count(*) USERID from ARUDSUSER;
The above query reports on all users in the primary user table. To determine the number of users per Organization container (ARUDSORGANIZATION ) as defined in AuthMinder amend the query to:
select count(*) USERID from ARUDSUSER where ORGNAME = ‘YourOrgNameHere’;
If the customer is using the LDAP org, retrieve the count of active uses based on the attribute mapping for User Status in AA.
Here is the brief information about the approach to get the active user count.
None.