Author Topic: 19GB modsec_audit.log  (Read 248 times)

0 Members and 1 Guest are viewing this topic.

Offline
**
19GB modsec_audit.log
« on: March 14, 2025, 04:00:39 AM »
Is this file not getting rotated in my log rotate? Is this not in CWP by default and if so ho can I add it so it will get rotated?

Offline
*****
Re: 19GB modsec_audit.log
« Reply #1 on: March 14, 2025, 10:52:13 AM »
Truncate it to zero bytes:
Code: [Select]
truncate -s0 /usr/local/apache/logs/modsec_audit.logThen go to File Management > Logrotate Manager and create a rotation rule for it. (Mine was 4K.)

Offline
***
Re: 19GB modsec_audit.log
« Reply #2 on: March 14, 2025, 01:35:07 PM »
Create the file:

/etc/logrotate.d/httpd

with the following content:

Code: [Select]
/usr/local/apache/logs/*log
{
        missingok
        notifempty
        sharedscripts
        copytruncate
        compress
        postrotate
                if [ -f /usr/local/apache/logs/httpd.pid ]; then
                        kill -USR1 `cat /usr/local/apache/logs/httpd.pid`
                fi
        endscript
        maxsize 100M
}

It will rotate files called like "anythinglog" located in the folder /usr/local/apache/logs/

Offline
**
Re: 19GB modsec_audit.log
« Reply #3 on: March 14, 2025, 06:00:20 PM »
Ok will that also rotate the error dom logs? I am noticing one or two error logs is getting large as well. Also thank you for your help.

Offline
**
Re: 19GB modsec_audit.log
« Reply #4 on: March 14, 2025, 07:24:49 PM »
Create the file:

/etc/logrotate.d/httpd

with the following content:

Code: [Select]
/usr/local/apache/logs/*log
{
        missingok
        notifempty
        sharedscripts
        copytruncate
        compress
        postrotate
                if [ -f /usr/local/apache/logs/httpd.pid ]; then
                        kill -USR1 `cat /usr/local/apache/logs/httpd.pid`
                fi
        endscript
        maxsize 100M
}

It will rotate files called like "anythinglog" located in the folder /usr/local/apache/logs/

Also do I run this manually when they get large oer does it run on it's own?

Offline
***
Re: 19GB modsec_audit.log
« Reply #5 on: March 15, 2025, 10:39:15 AM »
It will be executed automatically on daily bases. All files located in the folder /usr/local/apache/logs/ with the names "log" at the end:

something.log
something_log
somethinglog

will be checked for their size. If the file size is over than 100Mb the log file will be rotated.

Offline
**
Re: 19GB modsec_audit.log
« Reply #6 on: March 15, 2025, 04:55:26 PM »
It will be executed automatically on daily bases. All files located in the folder /usr/local/apache/logs/ with the names "log" at the end:

something.log
something_log
somethinglog

will be checked for their size. If the file size is over than 100Mb the log file will be rotated.

So then the dom error log files won't be rotated

Offline
*****
Re: 19GB modsec_audit.log
« Reply #7 on: March 15, 2025, 06:59:38 PM »
cyberspace's Logrotate config will catch anything ending in .log or _log, including /usr/local/apache/logs/modsec_audit.log
and /usr/local/apache/logs/modsec_debug.log (which is the subject of this thread:
Code: [Select]
0 /usr/local/apache/logs/*bytes
129M /usr/local/apache/logs/access_log
452K /usr/local/apache/logs/error_log
4.0K /usr/local/apache/logs/httpd.pid
4.0K /usr/local/apache/logs/modsec_audit.log
0 /usr/local/apache/logs/modsec_debug.log
0 /usr/local/apache/logs/phpmail.log
0 /usr/local/apache/logs/suphp_log
0 /usr/local/apache/logs/tmp
If you're thinking of logs in /usr/local/apache/domlogs/, that is a separate logrotate config for httpd, /etc/logrotate.d/httpd:
Code: [Select]
/usr/local/apache/domlogs/*.log {
    missingok
    notifempty
    sharedscripts
    daily
    rotate 7
    postrotate
        /sbin/service httpd reload > /var/log/httpd-rotate.log 2>&1 || true
    endscript
    compress
}
(which is why I would name cyberspace's config "modsec" or something like that, since your purpose is to rotate the Mod Security audit & error logs. The server-wide access & error_log files in that directory shouldn't be growing much in size unless you have something misconfigured.)

Offline
**
Re: 19GB modsec_audit.log
« Reply #8 on: March 16, 2025, 05:11:23 PM »
I added this code to the same logrotate.d/httpd file as the other

/usr/local/apache/domlogs/*.log {
    missingok
    notifempty
    sharedscripts
    daily
    rotate 7
    postrotate
        /sbin/service httpd reload > /var/log/httpd-rotate.log 2>&1 || true
    endscript
    compress
}

I hope that is where it goes.