LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Server (https://www.linuxquestions.org/questions/linux-server-73/)
-   -   setting logrotation for apache-1.3.35 (https://www.linuxquestions.org/questions/linux-server-73/setting-logrotation-for-apache-1-3-35-a-558955/)

dianarani 06-04-2007 12:38 AM

setting logrotation for apache-1.3.35
 
Hello Everybody,
I would like to set log rotation by size for my apache which is APACHE1.3.35. Is there anybody to help me.Please expound me the details how could i check is it working correctly? actually i was confused with a lot of log files? Actually i got the command to set logrotation for 24 hours,


CustomLog "|/usr/local/apache/bin/rotatelogs /var/log/access_log 86400" common

but its not working.Help me :confused: .please.http://linuxquestions.cachefly.net/i...ies/newbie.gif:newbie:

digitalnerds 06-04-2007 03:27 AM

Hi there

You will need to use the /etc/logrotate.conf or /etc/logrotate.d/*.conf files to be similar to his

Code:

# see "man logrotate" for details
 # rotate log files weekly
 weekly

 # keep 4 weeks worth of backlogs
 rotate 4

 # send errors to root
 errors root

 # create new (empty) log files after rotating old ones
 create

 # uncomment this if you want your log files compressed
 #compress

 # RPM packages drop log rotation information into this directory
 include /etc/logrotate.d

 # no packages own lastlog or wtmp -- we'll rotate them here
 /var/log/wtmp {
    monthly
    create 0664 root utmp
    rotate 1
 }

 /var/log/lastlog {
    monthly
    rotate 1
 }

 # system-specific logs may be configured here
 ## rotate apache logs weekly, keeping 8 rotations
 /www/apache/var/logs/*log {
    rotate 8
    postrotate
      kill -HUP `cat /www/apache/var/logs/httpd.pid`
    endscript
 }

You can tweak this ocnf to suit your needs

Regards
Andy


All times are GMT -5. The time now is 07:54 AM.