Automated log management for RSA Mobile
Originally Published: 2004-01-19
Article Number
Applies To
RSA Mobile 1.5
Microsoft Windows 2000
Sun Solaris
Issue
Log file keeps growing
Cause
Resolution
The configuration of this logging can be found in the file <BASEDIR>/properties/AuditLogConfig.xml, where there will be a block of data that looks as shown below:
<!-- This appender will store RSA Events into a flat file. If the -->
<!-- value of the File parameter is not a full or relative pathname, -->
<!-- the event log file will be stored in the working directory. -->
<appender name="EventFile" class="org.apache.log4j.FileAppender">
<errorHandler class="com.rsa.log4j.RSAErrorHandler"/>
<!-- Customizable log file location. -->
<param name="File" value="../../log/RSAEvent.log" />
<!-- Use PatternLayout for formatting. -->
<layout class="org.apache.log4j.PatternLayout">
<param name="ConversionPattern"
value="%d %-5p [%t] %C{2} (%F:%L) - %m%n"/>
</layout>
</appender>
To have the log file switched each day, replace the entire block of code with the following:
<!-- This appender will store RSA Events into a flat file. If the -->
<!-- value of the File parameter is not a full or relative pathname, -->
<!-- the event log file will be stored in the working directory. -->
<appender name="EventFile" class="org.apache.log4j.DailyRollingFileAppender">
<errorHandler class="com.rsa.log4j.RSAErrorHandler"/>
<!-- Customizable log file location. -->
<param name="File" value="../../log/RSAEvent.log" />
<param name="DatePattern" value=".yyyy-MM-dd" />
<!-- Use PatternLayout for formatting. -->
<layout class="org.apache.log4j.PatternLayout">
<param name="ConversionPattern"
value="%d %-5p - %m%n"/>
</layout>
</appender>
NOTE: The log switch does not occur at midnight. It occurs when the next event occurs, which might for example not be until 6:00 a.m. the next morning.
Related Articles
What files on a workstation with RSA Authentication Agent 7.4.x for Windows may potentially show as false positive from a … 41Number of Views RSA Authentication Manager 8.2 Administrator's Guide 149Number of Views Managing Security Questions 37Number of Views Configure password and security questions chained login for RSA Authentication Manager Prime Kit Self-Service Portal (SSP) 144Number of Views Performance improvements related to T_AV_MODEL_EXPLODEDUSERENTS table in RSA Identity Governance & Lifecycle 50Number of Views
Trending Articles
RSA Authentication Manager 8.9 Setup and Configuration Guide RSA Authentication Manager 8.9 Release Notes (January 2026) RSA MFA Agent 2.3.6 for Microsoft Windows Installation and Administration Guide How to 'Trust' the RSA Authentication Manager Security Console Self-Signed Root CA certificate and prevent Cert warnings. RSA Authentication Manager Upgrade Process
Don't see what you're looking for?