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
Edit an Agent Credential 2Number of Views Agent Credentials 10Number of Views 'Caught Exception in Report.fill(): Could not initialize class sun.awt.X11GraphicsEnvironment' running or viewing Reports … 155Number of Views Delete an Agent Credential 2Number of Views Bootstrapping can fail if Symantec Antivirus is installed on Enterprise or Site Coordinator (Named Pipe Error) 62Number of Views
Trending Articles
Downloading RSA Authentication Manager license files or RSA Software token seed records RSA MFA Agent 2.3.6 for Microsoft Windows Installation and Administration Guide Quick Setup Guide - Passwordless Authentication in Windows MFA Agent for Active Directory Mandatory Certificate Upgrade Required by 6th October 2025 for RSA MFA Agent for PAM, RSA MFA Agent for Apache, and Third … RSA Authentication Manager 8.9 Release Notes (January 2026)
Don't see what you're looking for?