Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place. |
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.
|
 |
02-11-2003, 09:41 AM
|
#1
|
Member
Registered: Dec 2002
Posts: 63
Rep:
|
logrotation
Hi,
Here is an entry in my logrotate.conf file:
# RPM packages drop log rotation information into this directory
include /etc/logrotate.d
I put five different scripts into /etc/logrotate.d/syslog. Now I am wondering if I have to add an entry into my logrotate.conf file like the one below (3rd line down) for this to work:
# RPM packages drop log rotation information into this directory
include /etc/logrotate.d
include /etc/logrotate.d/syslog
In /etc/logrotate.d/syslog by default there was this entry below:
/var/log/messages /var/log/secure /var/log/maillog /var/log/spooler /var/log/boot.log /var/log/cron {
sharedscripts
postrotate
/bin/kill -HUP `cat /var/run/syslogd.pid 2> /dev/null` 2> /dev/null || true
endscript
}
The log files mentioned above are rotating properly without an entry in logrotate.conf (inlcude /etc/logrotate.d/syslog). I'm just not sure if i'm not seeing any rotation yet because the 5 logfiles i created are set for monthly rotation. That makes sense to me but confirmation would be nice. Would it be easier to put the 5 scripts i created right into logrotate.conf? Below is one of my scripts.
/var/log/syslog {
monthly
rotate 12
postrotate
/usr/bin/killall -HUP syslogd
endscript
}
Also, are there specific permissions which i might have to set on /etc/logrotate.d/syslog?
Thanks,
|
|
|
02-16-2003, 01:37 PM
|
#2
|
Senior Member
Registered: Nov 2002
Location: British Columbia, Canada
Distribution: Gentoo x86_64; FreeBSD; OS X
Posts: 3,764
Rep:
|
Quote:
The log files mentioned above are rotating properly without an entry in logrotate.conf
|
Well, you can see the "include" statement which makes logrotate read /etc/logrotate.d/syslog, which in essence extends the main .conf file. You can put your scripts in syslog if you want, or put them in the main conf file. The syslog is just a way to seperate the configuration of the system logs.
|
|
|
02-17-2003, 09:27 AM
|
#3
|
Member
Registered: Dec 2002
Posts: 63
Original Poster
Rep:
|
What I've done is put the scripts in /etc/logrotate.d. Now I have /etc/logrotate.d/syslog as well as /etc/logrotate.d/script 1......script 5 for a total of 6 scripts in /etc/logrotate.d. I assume this should also work because of the "include" statement in logrotate.conf. I've taken out the statement /etc/logrotate.d/syslog since I moved my scripts out of this location.
|
|
|
02-17-2003, 01:18 PM
|
#4
|
Senior Member
Registered: Nov 2002
Location: British Columbia, Canada
Distribution: Gentoo x86_64; FreeBSD; OS X
Posts: 3,764
Rep:
|
That will work fine, but it does create an unecessary amount of files, why not just type your scripts directly into one of the conf files?
|
|
|
All times are GMT -5. The time now is 11:20 AM.
|
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
|
|