0

我在我的中有以下声明/etc/rsyslog.conf

# This one is the template to generate the log filename dynamically
$template DynFile,"/var/log/proxy/%$year%/%$month%/%$now%.log"

if $fromhost-ip == '192.168.1.1' then *.* ?DynFile

这个想法是将本地和远程日志拆分为单独的目录和文件。

rsyslog 守护程序启动时没有任何错误,但未创建预期的日志。如果我用 simple 替换“if”语句,*.* ?DynFile那么会填充日志,但当然它们不会被拆分。

4

1 回答 1

0

在你的情况下,我认为这只是一个语法错误:

$template DynFile,"/var/log/proxy/%$year%/%$month%/%$now%.log"
if $fromhost-ip == '127.0.0.1' then ?DynFile

** 我使用“127.0.0.1”作为本地主机

于 2013-08-22T07:10:20.750 回答