ApacheDS 2.0__Basic User Guide 1.4.4 - Configure logging (基础用户指导手册)

对 ApacheDS 2.0的Basic User Guide 进行翻译学习。http://directory.apache.org/apacheds/basic-ug/1.4.4-configure-logging.html

1.4.4 - Configure logging

配置日志记录

In order to detect and analyze problems, adjusting the log level of a server can be a valuable tool. This section describes how to configure logging within a standalone ApacheDS.

为了侦测和分析问题,对ldap server的log级别的调整也是有价值的。该段描述了如何在一个独立的Apache DS里去配置日志相关。

ApacheDS and logging

ApacheDS 2.0 uses SLF4J as its logging solution. This is a simple facade for various logging APIs. The default for ApacheDS 2.0 islog4j.

ApacheDS 2.0 使用 SLFJ 作为他的日志解决方案。 这是一个对各种各样的日志 API 的简单外观包装。Apache DS2.0 默认使用Log4J.

Default behavior after installation

安装后的默认行为。

By default, ApacheDS writes log files in the directory /var/log/. Besides stdout, aRollingFileAppender is used to collect warnings and errors. It backups the log files when they reach a certain size.

作为默认情况,DS 会在把日志文件记录在/var/log/目录 (/ 代表 DS的安装目录)。除了控制台stdout , 一个RollingFileAppender (周期性质生成一个一个文件的API)也被使用去收集 警告和错误。当日志文件到达了指定的文件大小size, 它将备份那些日志文件。

log4j.rootCategory=WARN, stdout, R

log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout

log4j.appender.R=org.apache.log4j.RollingFileAppender
log4j.appender.R.File=apacheds-rolling.log

log4j.appender.R.MaxFileSize=1024KB
# Keep some backup files
log4j.appender.R.MaxBackupIndex=5

log4j.appender.R.layout=org.apache.log4j.PatternLayout
log4j.appender.R.layout.ConversionPattern=[%d{HH:mm:ss}] %p [%c] - %m%n

log4j.appender.stdout.layout.ConversionPattern=[%d{HH:mm:ss}] %p [%c] - %m%n

# with these we'll not get inundated when switching to DEBUG
log4j.logger.org.apache.directory.shared.ldap.name=WARN
log4j.logger.org.springframework=WARN
log4j.logger.org.apache.directory.shared.codec=WARN
log4j.logger.org.apache.directory.shared.asn1=WARN
In this file "R" is configured like this:

Property nameValue in file aboveMeaning
Fileapacheds-rolling.logPath to the output log file, in our case relative to var/log
MaxFileSize1024KBMaximum size that the output file is allowed to reach before being rolled over to backup files
MaxBackupIndex5Number of backup files kept
layout.ConversionPattern[%dFormat string for logging events

Adjusting logging to your needs

根据自己的需求去调整日志记录吧 这儿就是个参考模版

Log file location (where the log files are placed)

By default the log files are placed at /var/log/, but that can be changed.

日志文件位置。默认情况下 文件存在/var/log/, 但也是可以被修改自定义的。

Linux/MacOS/Solaris

On this systems the location of the log files is configured via an entry in /bin/server.init. Look for the following lines and change it to your preferences:

在上面的三种系统中,日志文件的存放位置可以通过配置 /bin/server.int来修改。参考下面的配置, 可以改成适合你自己的哦。

$DAEMON_HOME/apacheds \
...
-outfile $SERVER_HOME/var/log/apacheds-stdout.log \
-errfile $SERVER_HOME/var/log/apacheds-stderr.log \
...    
$APACHEDS_HOME start

Windows

On Windows you can use the configuration wizard for the service as shown in the screenshot above. To adjust the log path you have to adjust the values ofRedirect Stdout and Redirect Stderror

对于win系统来说 你可以使用配置向导 (在上面的截图中)。去调整日志的路径时候,你必须去调整 redirect stdout 和 redirect stderror.

Log level (how detailed the logs are)

The following log levels from log4j are used for messages within ApacheDS:

在apache ds中log4j的日志级别 (例如选择了debug级别 就会把其下面所有级别日志都记录,选择errror级别 也会记录fatal)

LevelDescription from log4j documentation
DEBUGDesignates fine-grained informational events that are most useful to debug an application
INFODesignates informational messages that highlight the progress of the application at coarse-grained level
WARNDesignates potentially harmful situations
ERRORDesignates error events that might still allow the application to continue running
FATALDesignates very severe error events that will presumably lead the application to abort


The default (global) log level in the configuration is WARN. All messages of level WARN and more severe (ERROR, FATAL) are written to the rolling log file. The easiest way to get finer log messages is to change it like this

默认的日志级别是warn (它会记录warn , error 和 fatal 这三个级别的消息) 最方便的方法修改日志finder级别像下面一行是把warn 改成了 debug

log4j.rootCategory=DEBUG, stdout, R
...

These detailed log messages took much file space and time and therefore should only be enabled globally in order to analyze problems.

这些详细的日志消息将会占用大量的文件空间和一些cpu运算时间, 因此 它们必须能够保持统一的格式才好去分析问题。

It is possible to configure the logging more fine grained by using categories. Within the default configuration there are some examples:

可以通过类别这种更好的颗粒度去配置日志,下面有以下默认配置的例子

# with these we'll not get inundated when switching to DEBUG
log4j.logger.org.apache.directory.shared.ldap.name=WARN
log4j.logger.org.springframework=WARN
log4j.logger.org.apache.directory.shared.codec=WARN
log4j.logger.org.apache.directory.shared.asn1=WARN

这儿是用包名做为类别来分

If the global level is switched to DEBUG, these definitions override the setting with WARN for certain areas and therefore keep the file a little bit smaller. Learn more about the concept of categories in theShort introduction to log4j.

如果全局的日志级别切换成了DEBUG ,那么这些以包名定义的配置 仍然会使用WARN级别。这样将会使生成的日志文件小很多。(说的就是 以局部的配置为优先 即在局部采用warn 其它的还用全局的DEBUG级别)想要学习更多的分类概念请参考Short introduction to log4j.

Format for log messages

格式化日志消息

The format of each line within a log file is controlled by a pattern. For the RollingFileAppender in the default configuration it looks like this

日志的每一行信息显示格式 都会被pattern所控制,下面是RollingFileAppender生成的日志所采用的格式

...
log4j.appender.R.layout=org.apache.log4j.PatternLayout
log4j.appender.R.layout.ConversionPattern=[%d{HH:mm:ss}] %p [%c] - %m%n
...

Some examples lines within the log file, formatted with the pattern "[%d{HH:mm:ss}] %p [%c] - %m%n" are:

下面是实际生成出来的log例子

[12:29:03] WARN [org.apache.directory.server.core.DefaultDirectoryService]
    - You didn't change the admin password of directory service instance 'default'.
    Please update the admin password as soon as possible to prevent a possible security breach.
...
[12:29:05] INFO [org.apache.directory.server.jndi.ServerContextFactory]
    - Successful bind of an LDAP Service (636) is complete.
[12:29:05] INFO [org.apache.directory.server.Service] - server: started in 6750 milliseconds

The pattern uses the following conversion characters:

下面是格式化字符的含义

CharacterOutput
%dDate of the logging event in the given format. like "12:29:05" for %d 时间格式
%pPriority (level) of the logging event, like "INFO" or "WARN" 日志级别
%cCategory of the logging event, like "org.apache.directory.server.Service" 日志分类
%mApplication supplied message associated with the logging event
%nPlatform dependent line separator 换行符

The javadoc of log4j contains a table with all valid %-characters and their meaning.

javadoc of log4j 里面包含了所有的格式化字符含义

Simple adjust the pattern in the log4j.properties file to get the log format of your choice, for instance

在log4j.properties文件使用一些简单的模式去获得你想要的日志格式,例如

log4j.appender.R.layout.ConversionPattern=[%d{dd.MM.yyyy HH:mm:ss}] %p: %c{1}.%M() - %m%n
得到

[29.12.2006 13:50:44] INFO: ServerContextFactory.startLDAP0() 
    - Successful bind of an LDAP Service (636) is complete.
[29.12.2006 13:50:44] INFO: Service.init() - server: started in 3016 milliseconds
** Warning**"Generating caller location information like with %M or %L is extremely slow. Its use should be avoided unless execution speed is not an issue." (from the log4j documentation)

警告 使用%M or %L pattern 会拖慢服务器的运行速度,请谨慎使用.


Advanced log4j configuration

log4j的高级配置

You can take advantage of other features of log4j as well, such as other appenders like the daily rolling file appender. And you can configure logging to make it easier for you to view the messages with tools like Log Factor 5 orChainsaw.

你也可以利用log4j的一些其它特性,例如别的appenders 像daily rolling file appender (一天记录一个日志文件) 和 你也可以通过配置使你更容易的查看消息利用工具Factor 5 orChainsaw.

Learn more about log4j and related tools at its homepage.

想学习更多的关于log4j的知识和工具 请访问它的官方主页 homepage.

Example configurations

配置例子

The following example could be used to log all incoming search, add, delete, modify and moddn requests:

下面的例子可以被用于记录所有的 对apache ds 的查询 添加 删除和修改请求

log4j.logger.org.apache.directory.server.ldap.handlers.SearchHandler=DEBUG
log4j.logger.org.apache.directory.server.ldap.handlers.AddHandler=DEBUG
log4j.logger.org.apache.directory.server.ldap.handlers.DeleteHandler=DEBUG
log4j.logger.org.apache.directory.server.ldap.handlers.ModifyHandler=DEBUG
log4j.logger.org.apache.directory.server.ldap.handlers.ModifyDnHandler=DEBUG

Log settings of the Windows daemon process

apache ds 在 win 环境下的日志配置

After installation on Windows, you have the option to configure the ApacheDS Windows Service (you can do this later as well). If you do so, one option pane is dedicated to logging:

Windows service properties

You can adjust the logging level and a log path. Note that this is for the daemon only. The server itself is configured as described above.


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值