线上生产环境中,安装了dnsmasq,并记录日志。由于每一次dns查询都会生产日志,考虑到日志量越来越大,就用logrotate做日志轮转。配置如下:/var/log/dnsmasq/dnsmasq.log{
daily//按天轮转日志
rotate15//保留15个log文件
compress//压缩轮转后的文件
delaycompress
dateext
m..
分类:
其他好文 时间:
2017-05-09 22:25:35
阅读次数:
691
根据自己的需要可以对MySQL的相关日志文件(错误日志、通用查询日志文件和慢查询日志文件)进行按天的转储,并只保留指定天数的备份文件,下面是一个例子:1)、安装crond服务(如果未安装yuminstalllogrotatecrontabs)rpm-qa|grepcrontabsyuminstallcrontabschkconfigcrond--list..
分类:
数据库 时间:
2017-05-07 19:52:23
阅读次数:
842
最近在搭建日志审计服务器,使用了rsyslog,发现这篇文章很有用,收藏一下。 原文链接:http://my.oschina.net/0757/blog/198329 具体内容: 非常详细的rsyslogd配置文件解析 rsyslog rsyslog rsyslog服务和logrotate服务 rs ...
分类:
其他好文 时间:
2017-05-06 16:30:59
阅读次数:
175
网上查了实现命令审计大概有以下几种: 查不到了,改天再补充 以下环境基于CentOS 6 以上没有用/etc/logrotate.d/syslog去轮替/var/log/cmd.log,因为syslog默认周期是采用/etc/logrotate.conf每周轮替一个文件,登录系统敲打的命令没有那么多 ...
分类:
系统相关 时间:
2017-05-04 20:18:57
阅读次数:
806
Logrotate是由cron控制,cron在规定的时间执行 " logrotate /etc/logrotate.conf "命令。将对象日志进行转储,删除,压缩等操作。。。 这是logrotate日志轮替工具的一段官方简介: 为了使用它,主要有两个地方需要修改一下:一个是/etc/logrota ...
分类:
系统相关 时间:
2017-04-29 12:53:07
阅读次数:
227
logrotate是个强大的系统软件,它对日志文件有着一套完整的操作模式,譬如:转储、邮件和压缩等,并且默认logrotate加到cron(/etc/cron.daily/logrotate)作为每日任务执行。自动有了logrotate,我想不用再自己写日志切割脚本。 如下对Tomcat日志cata ...
分类:
其他好文 时间:
2017-04-29 09:43:20
阅读次数:
174
logrotate命令用于对系统日志进行轮转、压缩和删除,也可以将日志发送到指定邮箱。每个记录文件都可被设置成每日,每周或每月处理,也能在文件太大时立即处理。#see"manlogrotate"fordetails#rotatelogfilesweeklyweekly#keep4weeksworthofbacklogsrotate4#createnew(empty)log..
分类:
其他好文 时间:
2017-04-27 11:45:29
阅读次数:
189
logrotate轮转减小日志大小,降低分析难度丢弃过期日志节省空间结合cron每天执行软件包logrotate配置文件/etc/logrotate.conf/etc/logrotate.d主配置文件及参数/etc/logrotate.conf配置文件格式weekly轮转频率,默认每周rotate4保留4个轮转备份create执行轮转后创建新文件compr..
分类:
其他好文 时间:
2017-04-18 22:23:48
阅读次数:
117
我部署了LDAPServer,但openldap默认没有保存日志,需要自己配置rsyslog服务来保存日志编辑/etc/rsyslog.conf,加入以下内容,将日志保存在以下路径local4.*/var/log/ldap/openldap.log重启rsyslog服务/etc/init.d/rsyslogrestart由于openldap日志会越来越大,所以需要logrotat..
分类:
其他好文 时间:
2017-03-27 11:59:08
阅读次数:
135
参考: http://www.lampbo.org/others/opensource/rsyslog-config-file-detail.html http://bangerlee.blog.chinaunix.net/uid-10540984-id-2609837.html http://ww ...
分类:
其他好文 时间:
2017-03-13 14:28:20
阅读次数:
989