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
Agent Credentials 10Number of Views Edit an Agent Credential 2Number of Views Delete an Agent Credential 2Number of Views 'Caught Exception in Report.fill(): Could not initialize class sun.awt.X11GraphicsEnvironment' running or viewing Reports … 154Number of Views Managing REST Protocol Authentication Agent Credentials 63Number of Views
Trending Articles
Passwordless Authentication in Windows MFA Agent for Active Directory – Quick Setup Guide RSA Authentication Manager 8.9 Release Notes (January 2026) RSA Authentication Manager Upgrade Process RSA Authentication Manager 8.7 SP2 Setup and Configuration Guide An example of SSO using SAML and ADFS with RSA Identity Management and Governance 6.9.x
Don't see what you're looking for?