Linux - Server This forum is for the discussion of Linux Software used in a server related context. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
12-31-2010, 10:09 PM
|
#1
|
Member
Registered: May 2008
Location: Tacoma, WA
Distribution: CentOS and RHEL
Posts: 124
Rep:
|
Logs not rotating
The log files in /var/log/httpd are not rotating. What should I check? Is there a was to run the rotation manually?
Here's what's in /etc/logrotate.conf
Code:
# see "man logrotate" for details
# rotate log files weekly
weekly
# keep 4 weeks worth of backlogs
rotate 4
# 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 wtmp -- we'll rotate them here
/var/log/wtmp {
monthly
minsize 1M
create 0664 root utmp
rotate 1
}
# system-specific logs may be also be configured here.
Last edited by Arty Ziff; 12-31-2010 at 10:30 PM.
|
|
|
01-01-2011, 12:25 AM
|
#2
|
Senior Member
Registered: May 2010
Location: Chicago Metro
Distribution: Arch, Gentoo, Slackware
Posts: 1,690
|
Quote:
# RPM packages drop log rotation information into this directory
include /etc/logrotate.d
|
You need to post the contents of the /etc/logrotate.d directory.
|
|
|
01-01-2011, 01:55 AM
|
#3
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
You certainly can run the rotate manually, using the -f option to logrotate if I remember right. Check the compare for full details, but if it's just the httpd logs then as above I would be looking at the httpd config in logrotate.d, if it even exists.
|
|
|
01-01-2011, 03:53 PM
|
#4
|
Member
Registered: May 2008
Location: Tacoma, WA
Distribution: CentOS and RHEL
Posts: 124
Original Poster
Rep:
|
Quote:
Originally Posted by andrewthomas
You need to post the contents of the /etc/logrotate.d directory.
|
This:
Quote:
acpid conman cups httpd mgetty named ppp proftpd psacct quagga rpm samba setroubleshoot squid syslog tux vsftpd.log wpa_supplicant yum
|
And the file httpd:
Code:
/var/log/httpd/*log {
missingok
notifempty
sharedscripts
postrotate
/bin/kill -HUP `cat /var/run/httpd.pid 2>/dev/null` 2> /dev/null || true
endscript
}
|
|
|
01-01-2011, 04:31 PM
|
#5
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
So run logrotate manually, and see what the verbose output says about the config files as they are written. Are other files bring successfully rotated?
|
|
|
01-04-2011, 01:51 AM
|
#6
|
Member
Registered: Mar 2006
Location: Singapore
Distribution: RHEL, CentOS
Posts: 132
Rep:
|
logrotate use cron to rotate. If you don't install cron packages, log will not rotated.
/etc/cron.daily/logrotate
Make sure below packages are installed
crontabs.noarch
vixie-cron.i386
|
|
|
All times are GMT -5. The time now is 07:58 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|