Setting Up Logrotate on RedHat Linux

1. Introduction

Logrotate is a utility designed for administrators who manage servers producing a high volume of log files to help them save some disk space as well as to avoid a potential risk making a system unresponsive due to the lack of disk space. Normally, a solution to avoid this kind of problem is to setup a separate partition or logical volume for a /var mount point. However, logrotate may also be a viable solution to this problem especially if it is too late to move all logs under different partition. In this article we will talk about usage and configuration of logrotate on RedHat / CentOS Linux server.

2. What is Logrotate

Logrotate provides an ability for a system administrator to systematically rotate and archive any log files produced by the system and thus reducing a operating system's disk space requirement. By default logrotate is invoked once a day using a cron scheduler from location /etc/cron.daily/

# ls /etc/cron.daily/
cups  logrotate  makewhatis.cron  mlocate.cron  prelink  readahead.cron  rhsmd  tmpwatch

3. Configuring Logrotate

Logrotate's configuration is done by editing two separate configuration files:

  • /etc/logrotate.conf
  • service specific configuration files stored in /etc/logrotate.d/.

The main logrotate.conf file contains a generic configuration. Here is a default logrotate configuration file logrotate.conf:

     1  weekly
     2  rotate 4
     3  create
     4  dateext
     5  include /etc/logrotate.d
     6  /var/log/wtmp {
     7      monthly
     8      create 0664 root utmp
     9          minsize 1M
    10      rotate 1
    11  }
  • Line 1 - weekly configuration option ensures a weekly rotation of all log-files defined in main configuration file and in /etc/logrotate.d/ directory.
  • Line 2 - rotate 4 ensures that logrotate keeps a 4 weeks backup of all log files
  • Line 3 - create option instructs logrotate to create new empty log files after each rotation
  • Line 4 - dateext appends an extension to all rotated log files in form of date when each particular log file was processed by logrotate
  • Line 5 - include all other configuration from directory /etc/logrotate.d
  • Line 6 - 11 contains a specific service log rotate configuration

As opposed to logrotate.conf a directory /etc/logrotate.d/ contains a specific service configuration files used by logrotate. In the next section we will create a sample skeleton logrotate configuration.

3.1. Including new service logs to logrotate

In this section we will add new log file into a logrotate configuration. Let's say that we have a log file called:

/var/log/linuxcareer.log

sitting in our /var/log directory that needs to be rotated on daily basis. First we need to create a new logrotate configuration file to accommodate for our new log file:

$ vi /etc/logrotate.d/linuxcareer

Insert a following text into /etc/logrotate.d/linuxcareer:

/var/log/linuxcareer.log {
    missingok
    notifempty
    compress
    size 20k
    daily
    create 0600 root root
}

Here is a line by line explanation of the above logrotate configuration file:

TIP: If you wish to include multiple log files in a single configuration file use wildcard. For example /var/log/mylogs/*.log will instruct logrotate to rotate all log files located in /var/log/mylogs/ with extension .log.

  • missingok - do not output error if logfile is missing
  • notifempty - donot rotate log file if it is empty
  • compress - Old versions of log files are compressed with gzip(1) by default
  • size - Log file is rotated only if it grow bigger than 20k
  • daily - ensures daily rotation
  • create - creates a new log file wit permissions 600 where owner and group is root user

The logrotate utility as quite versatile as it provides many more configuration options. Below, I will list few other configuration options for log rotate. To get a complete list, consult logrotate's manual page:

$ man logrotate
  • copy - Make a copy of the log file, but don’t change the original at all.
  • mail <email@address> - When a log is rotated out-of-existence, it is mailed to address.
  • olddir <directory> - Logs are moved into <directory> for rotation.
  • postrotate/endscript - The lines between postrotate and endscript are executed after the log file is rotated.

3.2. Testing a new Logrotate configuration

Once you have created a new logrotate configuration file within /etc/logrotate.d:

# cat /etc/logrotate.d/linuxcareer 
/var/log/linuxcareer.log {
    missingok
    notifempty
    compress
    size 20k
    daily
    create 0600 root root
}

create some sample log file ( if not existent ! ):

# echo "rotate my log file" > /var/log/linuxcareer.log

Once your log file is in place force logrotate to rotate all logs with -f option.

# logrotate -f /etc/logrotate.conf

Warning: The above command will rotate all your logs defined in /etc/logrotate.d directory.

Now visit again your /var/log/directory and confirm that your log file was rotated and new log file was created:

# cat /var/log/linuxcareer.log
rotate my log file
# logrotate -f /etc/logrotate.conf 
# cat /var/log/linuxcareer.log
file /var/log/linuxcareer.log-20130409.gz 
/var/log/linuxcareer.log-20130409.gz: gzip compressed data, from Unix, last modified: Tue Apr  9 12:43:50 2013
# zcat /var/log/linuxcareer.log-20130409.gz 
rotate my log file

As you can see the new empty log file linuxcareer.log was created and old linuxcareer.log file was compressed with gzip and renamed with date extension.

TIP: In order to see a content of your compressed log file you do not need to decompress it first. Use zcat or zless commands which will decompress your log file on fly.

4. Conclusion

As it was already mentioned previously, the best way to avoid your system being clogged by log files is to create a separate partition/logical volume for your /var/ or even better /var/log directory. However, even then logrotate can help you to save some disk space by compressing your log files. Logrotate may also help you to archive your log files for a future reference by creating an extra copy or by emailing you any newly rotated log files. For more information see logrotate's manual page:

$ man logrotate
 
original link:http://linuxconfig.org/setting-up-logrotate-on-redhat-linux
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值