- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 ubuntu 16.04 上使用 rsyslog 版本 8.16.0。
以下是我的配置文件:
module(load="imfile") #needs to be done just once
# File 1
input(type="imfile"
mode="inotify"
File="/var/log/application/hello.log"
Tag="application-access-logs"
Severity="info"
PersistStateInterval="20000"
)
$PrivDropToGroup adm
$WorkDirectory /var/spool/rsyslog
$InputRunFileMonitor
#Template for application access events
$template ApplicationLogs,"%HOSTNAME% %msg%\n"
if $programname == 'application-access-logs' then @@xx.xx.xx.xx:12345;ApplicationLogs
if $programname == 'application-access-logs' then ~
我收到以下错误:
rsyslogd: version 8.16.0, config validation run (level 1), master config /etc/rsyslog.conf
rsyslogd: error during parsing file /etc/rsyslog.d/21-application-test.conf, on or before line 10: parameter 'mode' not known -- typo in config file? [v8.16.0 try http://www.rsyslog.com/e/2207 ]
rsyslogd: imfile error: no file name given, file monitor can not be created [v8.16.0 try http://www.rsyslog.com/e/2046 ]
我在这里做错了什么?我正在使用 inotify
模式,因为我想在文件名中使用通配符。
最佳答案
我知道这不是一个完整的答案,而是一个可以帮助其他人解决同样问题的观察。
module(load="imfile"mode="inotify")
是全局设置的,因此如果任何其他 .conf 文件设置了模块属性,它似乎会为任何 future 的文件抛出此错误。
关于Rsyslog imfile 错误 : no file name given,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47899355/
我正在尝试使用 Rsyslog 中的 imfile 解决将目录和子目录中的日志文件“发送”到中央日志服务器的问题。 操作系统是 CentOS 7 CentOS Linux release 7.3.16
是否有使用OpenCV或scikit-image的实现相当于Matlab的灰度图像imfill函数(即灰度孔填充)? 请参阅以下示例链接中的灰度填充部分 (I2= imfill(I)) matlab_
我在 ubuntu 16.04 上使用 rsyslog 版本 8.16.0。 以下是我的配置文件: module(load="imfile") #needs to be done just once
再会 我想使用 imfile 文件输入模块将文本文件导入 rsyslog。但是,rsyslog 并没有像我预期的那样解析文本文件的内容,我正在努力寻找关于它是如何完成的文档。为了测试设置,我使用 im
我正在尝试让Rsyslog的imfile插件无需工作任何真正的成功。 这里是有用的操作系统版本信息: # cat /etc/centos-release CentOS Linux release 7.
我需要高效地实现 matlab 的 imfill(BW,'holes') 函数,该函数填充二进制图像 (0,1) 中的“孔”。 二值图像表示为 0 和 1 的二维矩阵,其中 1 表示白色(亮)区域,0
我是一名优秀的程序员,十分优秀!