考试首页 | 考试用书 | 培训课程 | 模拟考场 | 考试论坛  
  当前位置:Linux认证 > 红帽认证 > 红帽认证辅导 > 文章内容
  

RHCE7认证学习笔记:分析和存储日志

来源:Linux社区 [ 2016年2月16日 ] 【

一、rsyslogd服务管理系统日志,随机启动
[root@linuxidc rsyslog.d]# systemctl is-active rsyslog.service 
active
[root@linuxidc rsyslog.d]# systemctl is-enabled rsyslog.service 
enabled

        rsyslog的配置文件为/etc/rsyslog.conf,日志文件存储在/var/log目录下面,;
        日志的7个级别,debug级别仅用于调试,也是最低的级别:

        1、info;2、notice;3、warning;4、err;5、crit;6、alert;7、emerg;

        在配置文件里面每个事件都会对应一个级别,*代表所有级别,-/var/log/mail,“-”代表非同步,内存和硬盘非同步读写,先读到内存,再写硬盘,源于两者读写速度不同,如:mail.*,mail.emerg:

RHCE7认证学习笔记10——分析和存储日志
    所有等于或高于info级别(除mail外)的事件级别都会被记录到/var/log/messages文件,debug信息低于info级别,所以不会被记录到messages里面;

 # Log anything (except mail) of level info or higher.
 53 # Don't log private authentication messages!
 54 *.info;mail.none;authpriv.none;cron.none                /var/log/messages

    为了验证以上的配置,可以配置local7的debug级别事件,记录倒/var/log/xx目录下面,使用logger命令模拟debug事件,验证信息是否写到messages和xx里面:

 72 # Save boot messages also to boot.log
 73 local7.*                                                /var/log/boot.log
 74 local7.debug                                            /var/log/xx

[root@linuxidc rsyslog.d]# logger -P local7.debug XXXXXXXXXXXXXXXXXX

    如果日志需要发送给远端服务器记录,则需要在远端服务器日志配置文件先开启接受远端日志:

 14 # Provides UDP syslog reception
 15 $ModLoad imudp
 16 $UDPServerRun 514
 17 
 18 # Provides TCP syslog reception
 19 $ModLoad imtcp
 20 $InputTCPServerRun 514

    在近端的配置文件写成:
1  74 local7.debug                                            @192.168.100.100

    查看日志内容,除了可以使用tail,tailf之外,还可以使用journalctl:

 [root@linuxidc log]# journalctl 
-- Logs begin at Wed 2015-01-07 23:28:05 CST, end at Thu 2015-01-08 11:10:02 CST. --
Jan 07 23:28:05 localhost.localdomain systemd-journal[207]: Runtime journal is using 6.1M (max 49.3M, leaving 74.0M of free 487.3M, cu
Jan 07 23:28:05 localhost.localdomain systemd-journal[207]: Runtime journal is using 6.1M (max 49.3M, leaving 74.0M of free 487.3M, cu
Jan 07 23:28:05 localhost.localdomain kernel: Initializing cgroup subsys cpuset

    journalctl的常用命令:
 [root@linuxidc log]# journalctl --help
journalctl [OPTIONS...] [MATCHES...]Flags:
    --system              Show only the system journal
    --user                Show only the user journal for the current user
    --since=DATE          Start showing entries on or newer than the specified date    从什么时间开始
    --until=DATE          Stop showing entries on or older than the specified date    到什么时间
  -k --dmesg              Show kernel message log from the current boot
  -u --unit=UNIT          Show data only from the specified unit
    --user-unit=UNIT      Show data only from the specified user session unit
  -p --priority=RANGE      Show only messages within the specified priority range查看特定级别的事件
  -e --pager-end          Immediately jump to end of the journal in the pager
  -f --follow              Follow the journal

[root@linuxidc log]# journalctl --since=2015-01-08 --until=2014-01-09 -p err

首页 1 2 尾页
本文纠错】【告诉好友】【打印此文】【返回顶部
将考试网添加到收藏夹 | 每次上网自动访问考试网 | 复制本页地址,传给QQ/MSN上的好友 | 申请链接 | 意见留言 TOP
关于本站  网站声明  广告服务  联系方式  站内导航  考试论坛
Copyright © 2007-2013 中华考试网(Examw.com) All Rights Reserved