Apache log rotate configuration


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Apache log rotate configuration
# 1  
Old 12-04-2018
Apache log rotate configuration

HI

i was trying to configure logrotate for my apache server and it's not working properly.

here is my lodrotate configuration

Code:
/var/log/httpd/*log {
    daily
    missingok
    notifempty
    sharedscripts
    compress
    delaycompress
    postrotate
        /sbin/service httpd reload > /dev/null 2>/dev/null || true
    endscript
}

And here is the logs directory

Code:
-rw-r--r-- 1 root root         1 Dec  4 09:10 jk-runtime-status.5767.lock
-rwxrwxr-x 1 root root         0 Dec  5 03:23 ssl_request_log
-rwxrwxr-x 1 root root         0 Dec  5 03:23 ssl_error_log
-rwxrwxr-x 1 root root         0 Dec  5 03:23 ssl_access_log
-rwxrwxr-x 1 root root         0 Dec  5 03:23 rewrite.log
-rwxrwxr-x 1 root root         0 Dec  5 03:23 mod_jk.log
-rwxrwxr-x 1 root root         0 Dec  5 03:23 error_log
-rwxrwxr-x 1 root root         0 Dec  5 03:23 access_log
-rwxrwxr-x 1 root root      5274 Dec  5 04:19 ssl_error_log-20181205
-rwxrwxr-x 1 root root     47198 Dec  5 06:10 error_log-20181205
-rwxrwxr-x 1 root root  11131982 Dec  5 06:13 ssl_request_log-20181205
-rwxrwxr-x 1 root root   9037654 Dec  5 06:13 ssl_access_log-20181205
-rwxrwxr-x 1 root root 514548359 Dec  5 06:13 rewrite.log-20181205
-rw-r--r-- 1 root root      6080 Dec  5 06:13 jk-runtime-status.5767
-rwxrwxr-x 1 root root   7457352 Dec  5 06:13 mod_jk.log-20181205
-rwxrwxr-x 1 root root  57777013 Dec  5 06:13 access_log-20181205


as you can see log is rotated with date ext but apache is still writing logs to rotated file no to new files(new files size is 0 bytes)
# 2  
Old 12-04-2018
Moderator's Comments:
Mod Comment This thread is a duplicate of the thread Apache log rotate configuration.

Please continue any further discussion of this topic there.

This thread is closed.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Red Hat

Apache log rotate configuration

HI i was trying to configure logrotate for my apache server and it's not working properly. Os: Red Hat 6 here is my lodrotate configuration /var/log/httpd/*log { daily missingok notifempty sharedscripts compress delaycompress postrotate ... (3 Replies)
Discussion started by: bentech4u
3 Replies

2. Shell Programming and Scripting

Log rotate

Hi, I have below script in logrotate.d to rotate logs. logs are not rotating after the file grow to 1k, do you have any idea? Is it because of it just only 1K? Please let me know if the below syntax is in correct. # more trotate /sourcepath/*/servers/*/logs/*log... (2 Replies)
Discussion started by: lpprasad321
2 Replies

3. Shell Programming and Scripting

Help with a rotate log script

Hi all, Am trying to write my own log rotate script. Curremtly, what I have is as below: #!/bin/ksh file_to_rotate=${1} x=${2} while ] do let curr=${x} let prev=${x}-1 if ] ; then #echo "cp -p ${file_to_rotate} ${file_to_rotate}.${curr}" cp -p... (7 Replies)
Discussion started by: newbie_01
7 Replies

4. UNIX for Advanced & Expert Users

rotate modsec log with logrotate in the global configuration

Hello Experts, I have an apache 2.2.17 on solaris 10 that I am not sure if I, could list the following in the global settings in httpd.conf. I tested it in the Virtual host section of httpd.conf and, it works but, not sure if I can do it in the global settings. Any help would be greatly... (0 Replies)
Discussion started by: afadaghi
0 Replies

5. Shell Programming and Scripting

Rotate log files

I have a big log,separated by the character:, one of the fields is the date in the format "day / month / year" and I need to remove the lines prior to 30 days. Can help me? (7 Replies)
Discussion started by: msanbrug
7 Replies

6. Shell Programming and Scripting

Script for Log Rotate

Hello, I only know the basic for shell programing. I need help for this, I thinks this is a basic for anyone who know a litle of shell scripting. I need creat a script for a rotatate logs, when a filesystem is full. I have a filesystem. The rotate consist in zip the current log (copy) and... (1 Reply)
Discussion started by: El Rengo
1 Replies

7. UNIX for Advanced & Expert Users

log rotate

hi , what is the meaning of log rotate? how do i rotate /var/adm/wtmps log and gzip it? (6 Replies)
Discussion started by: cromohawk
6 Replies

8. UNIX for Advanced & Expert Users

apache configuration

Hi. I run openbsd and apache 1.3.29 PHP/4.3.9 mod_perl/1.29 DAV/1.0.3 mod_ssl/2.8.16 OpenSSL/0.9.7c anyway,problem is i have in httpd.conf allow override all in /dir1 and 2 directories /dir1/.htaccess is AuthType Basic AuthName "Password Required" AuthUserFile /passwords/password.file... (1 Reply)
Discussion started by: hachik
1 Replies
Login or Register to Ask a Question