Logrotate Example for Custom Logs

Logrotate Example for Custom Logs

You will need this if you are using custom location for log files.

Below is example for Nginx where log files are directly created in /var/www/example.com/logs

You can put following in /etc/logrotate.d/nginx

/var/www/example.com/logs/*.log {
        daily
        missingok
        rotate 52
        compress
        delaycompress
        notifempty
        create 0640 www-data adm
        sharedscripts
        prerotate
                if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
                        run-parts /etc/logrotate.d/httpd-prerotate; \
                fi; \
        endscript
        postrotate
                [ ! -f /var/run/nginx.pid ] || kill -USR1 `cat /var/run/nginx.pid`
        endscript
}

Verify

Its always better to verify if logrotate script is correct.

Just run command

logrotate -d

It will produce debug output.

Restart/Force Update

Remember, logrotate is not service which can be restarted. In case you need your logrotate script to run immediately, use:

logrotate -f -v /etc/logrotate.d/nginx

Rotating log is very important. Otherwise some day your harddisk may get full and then mysql will be the first process which will refuse to start!

0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
Fałszujemy rozpoznania skanerów #1
Viewed 3094 times since Mon, May 21, 2018
ZFS: Snapshots and clones on zfs filesystems
Viewed 3171 times since Sun, Jun 3, 2018
RHEL: Enabling standard ftp/telnet
Viewed 3565 times since Sun, May 27, 2018
How to Analyze or Read OS Watcher Output in three easy steps -- With Example ?
Viewed 41902 times since Thu, Jun 21, 2018
Linux How to reset a root password on Fedora
Viewed 2670 times since Sun, Dec 6, 2020
Transform XML to CSV Format | Unix String Pattern Manipulation The Ugly Way
Viewed 5741 times since Sun, Jan 9, 2022
RHEL: Displaying/setting kernel parameters - ’sysctl’
Viewed 3105 times since Sat, Jun 2, 2018
Using etckeeper with git
Viewed 6964 times since Sun, Jun 3, 2018
A Simple Guide to Oracle Cluster File System (OCFS2) using iSCSI on Oracle Cloud Infrastructure
Viewed 8533 times since Sat, Jun 2, 2018
List DNS records, nameservers of a domain from command line
Viewed 2076 times since Sun, Sep 30, 2018