There are many places where the current application version can be found.
From the Application
- The application version and patch level are displayed on the bottom line of the main screens in the RSA Identity Governance & Lifecycle user interface.
For example, the below screenshot is from the bottom of a 7.1.1 P01 Home screen:

The version information is retrieved from the Oracle database. This information is also written to various log files and in a webserver properties file for cross-checking to ensure that the installed product is the same version as the installed database.
- In the Aveksa Statistics Report (ASR) which may be downloaded from the Admin > Diagnostics page of the RSA Identity Governance & Lifecycle user interface. Please see RSA Knowledge Base Article 000033719 -- How to create an Aveksa Statistics Report (ASR) in RSA Identity Governance & Lifecycle for information on how to create and download this report.
- The aveksaServerInfo.log which may be downloaded from the from Admin > System > Server Nodes page of the RSA Identity Governance & Lifecycle user interface. Please see RSA Knowledge Base Article 000030327 -- Artifacts to gather in RSA Identity Governance & Lifecycle for information on how to obtain this log file.
From the Database
This information is stored in the T_SYSTEM_SETTINGS table in the AVUSER schema. To see the version and patch level information directly from the database, run the following SQL as AVUSER:
To get the base version and build number:
select * from t_system_settings where parameter like 'SchemaCreated%'
To get the patch level and patch build number:
select * from t_system_settings where parameter like 'HotFix%';
From the Webserver Files
There are several places where the product version can be found on the webserver:
- The aveksa-version.properties file has the base version and build number. This file is located in /home/oracle/database on an appliance or soft-appliance installation. For WebLogic and WebSphere installations, this file is located in <your site-specific installation directories../../..>/aveksa.ear/aveksa.war/WEB-INF/classes.
- The patch-version.properties file has the patch level and patch build number. This file is located in /home/oracle/wildfly-10.1.0.Final/standalone/tmp/vfs/deployment/deployment<#####>/WEB-INF/classes/ on an appliance or soft-appliance installation. For WebLogic and WebSphere installations, this file is located in <your site-specific installation directories../../..>/aveksa.ear/aveksa.war/WEB-INF/classes.
- Aveksa Statistics Report (ASR) - See RSA Knowledge Base Article 000033719 -- How to create an Aveksa Statistics Report (ASR) in RSA Identity Governance & Lifecycle.
- The aveksaServerInfo.log file - See RSA Knowledge Base Article 000030327 -- Artifacts to gather in RSA Identity Governance & Lifecycle.
|