千家信息网

应用程序的日志通过rsyslog推送到syslog服务器

发表于:2025-01-22 作者:千家信息网编辑
千家信息网最后更新 2025年01月22日,centos5系列系统自带为syslog1.4.1centos6系列自带rsyslog版本为5.8.10centos7系列自带rsyslog版本为7.4.7目前最新版rsyslog为8.27.0,rs
千家信息网最后更新 2025年01月22日应用程序的日志通过rsyslog推送到syslog服务器

centos5系列系统自带为syslog1.4.1

centos6系列自带rsyslog版本为5.8.10

centos7系列自带rsyslog版本为7.4.7

目前最新版rsyslog为8.27.0,rsyslog从8.5.0后对imfile模块进行重构,文件名中可以支持通配符。


rsyslog官网:http://www.rsyslog.com/

升级rsyslog需要配置yum源,centos默认的升级不到最新的版本。


1、配置yum

为了能够使用RPM存储库,您需要一个.repo文件。使用您的webbrowser,请访问http://rpms.adiscon.com。在这里,可以下载rsyslogall.repo文件,或者转到所需版本的子文件夹(例如v8-stable),然后从中下载rsyslog.repo文件。(google翻译来的)


[root@localhost yum.repos.d]# pwd/etc/yum.repos.d[root@localhost yum.repos.d]# lsdvd.repo  packagekit-media.repo  rhel-source.repo  rsyslog.repo[root@localhost yum.repos.d]# cat rsyslog.repo [rsyslog_v8]name=Adiscon CentOS-$releasever - local packages for $basearchbaseurl=http://rpms.adiscon.com/v8-stable/epel-$releasever/$basearchenabled=1gpgcheck=0gpgkey=http://rpms.adiscon.com/RPM-GPG-KEY-Adisconprotect=1[root@localhost yum.repos.d]# rpm -qa|grep -i rsyslogrsyslog-5.8.10-10.el6_6.x86_64[root@localhost yum.repos.d]# yum -y install rsyslog[root@localhost yum.repos.d]# rpm -qa|grep -i rsyslogrsyslog-8.27.0-2.el6.x86_64[root@localhost yum.repos.d]#

根据官方网文档如果复制以上配置可能解析变量不正确导致安装不成功,此时需要替换第三行中的变量"$ releasever",$releasever的值表示当前系统的发行版本,可以通过rpm -qi centos-release命令查看,其中的Version:6就是我们系统的版本号;$basearch是我们的系统硬件架构(CPU指令集),使用命令arch得到。

[root@localhost yum.repos.d]# rpm -qi centos-releaseName        : centos-release               Relocations: (not relocatable)Version     : 6                                 Vendor: CentOSRelease     : 5.el6.centos.11.1             Build Date: Wed 27 Nov 2013 07:53:33 PM CSTInstall Date: Thu 27 Apr 2017 06:39:55 PM CST      Build Host: c6b9.bsys.dev.centos.orgGroup       : System Environment/Base       Source RPM: centos-release-6-5.el6.centos.11.1.src.rpmSize        : 32670                            License: GPLv2Signature   : RSA/SHA1, Wed 27 Nov 2013 09:26:58 PM CST, Key ID 0946fca2c105b9dePackager    : CentOS BuildSystem Summary     : CentOS release fileDescription :CentOS release files[root@localhost yum.repos.d]# archx86_64[root@localhost yum.repos.d]#


2、配置rsyslog

rsyslog默认只可以传送系统的日志,比如DHCP,cron、kern等,现在要传送一个服务的日志到远端的rsyslog服务器,要使用rsyslog的imfile模块。该模块提供将任何标准文本文件转换为syslog消息的功能。该文件逐行读取,任何读取的行都传递给rsyslog的规则引擎。

官方文档:

http://www.rsyslog.com/doc/v8-stable/configuration/modules/imfile.html

上图为配置样例,各参数可以参考文中的对应模块参数说明,module参考文中Module Parameters说明;input参考文中Input Parameters说明。

[root@localhost yum.repos.d]# cp /etc/rsyslog.conf{,.20170613bak}[root@localhost yum.repos.d]# vim /etc/rsyslog.confmodule(load="imfile" PollingInterval="10")input(type="imfile" File="/opt/CalculationUnit/java/sh/logs/bigada.log" Tag="CalculationUnit" Severity="info" Facility="local0" freshStartTail="on" deleteStateOnFileDelete="on")local0.* @10.10.15.175:514[root@localhost yum.repos.d]# /etc/init.d/rsyslog restart

module

load="imfile" 加载imfile模块

PollingInterval="10" 轮询文件的频率,单位秒,默认10秒,

input

type="imfile"

File="/opt/CalculationUnit/java/sh/logs/bigada.log" 发送到syslog的文件绝对路径

Tag="CalculationUnit"

Severity="info"

Facility="local0"

freshStartTail="on" 设置为on每次重启rsyslog时只读取最新的数据丢弃旧日志,默认关

deleteStateOnFileDelete="on" 如此文件会重新生成需要开启次参数,例如bigdata.log每天凌晨会重命名为bigdata%YYYY%mm%dd%.log,然后重新生成bigdata.log

local0.* @10.10.15.175:514 定义syslog服务器地址


错误:Permission denied

Jun 27 18:33:46 localhost rsyslogd: imfile warning: directory '/opt/CalculationUnit/java/sh/logs': Permission denied [v8.27.0 try http://www.rsyslog.com/e/2046 ]Jun 27 18:33:46 localhost rsyslogd:  [origin software="rsyslogd" swVersion="8.27.0" x-pid="19409" x-info="http://www.rsyslog.com"] startJun 27 18:33:46 localhost rsyslogd: imfile: error with inotify API, ignoring file '/opt/CalculationUnit/java/sh/logs/bigada.log': Permission denied  [v8.27.0]

检查selinux

[root@localhost ~]# sestatusSELinux status:                 enabledSELinuxfs mount:                /selinuxCurrent mode:                   enforcingMode from config file:          enforcingPolicy version:                 24Policy from config file:        targeted[root@localhost ~]# getenforce Enforcing[root@localhost ~]# setenforce 0[root@localhost ~]# getenforce Permissive[root@localhost ~]# sestatusSELinux status:                 enabledSELinuxfs mount:                /selinuxCurrent mode:                   permissiveMode from config file:          enforcingPolicy version:                 24Policy from config file:        targeted[root@localhost ~]# vim /etc/sysconfig/selinux [root@localhost ~]# /etc/init.d/rsyslog restartShutting down system logger:                               [  OK  ]Starting system logger:                                    [  OK  ][root@localhost ~]#


现在可以在syslog服务端数据库里查看到信息



0