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
RSA Authentication Agent and RSA Authentication Manager Software Developer Kits 127Number of Views Examining the Disk Space Usage on Authentication Manager 8.x 750Number of Views Managing Security Questions 37Number of Views 'decrypt error: IV missing' in Java auth API trace log 26Number of Views install.sh fails with 'gethostip: command not found' and 'gethostip -d <domainname> does not match hostname -i' errors in… 145Number of Views
Trending Articles
RSA Authentication Manager Patch Updates RSA SecurID software token .sdtid file fails to import into RSA SecurID Software Token 5.0 for Windows Configuring a Checkpoint firewall to work with SecurID RSA MFA Agent 2.3.6 for Microsoft Windows Installation and Administration Guide Unable to login to RSA Authentication Manager Security Console as super admin
Don't see what you're looking for?