Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
6k views

Apache rotate Access and Error logs Windows

How can I rotate the Apache Access and Error logs on a Window 2000 box? I include my batch file below as an answer. Is there a way of doing this directly via the Apache config file? I'm currently ...
4
votes
4answers
120 views

Detecting broken stream in python when file is deleted

My problem is that logging stops for a python program when the log is rotated. I have tracked it down to the stream itself. I don't see any way to tell if the stream is broken from python. After the ...
4
votes
1answer
478 views

Linux-Java logs rotating using log4j or logrotate.d

I have a Spring project using log4j on Linux (Debian, Ubuntu and RHEL). Now I would like to implement best practice logs rotation for the log4j generated logs. I have previously used logrotate.d for ...
3
votes
3answers
916 views

Failures caused by logrotate on Apache 2 with passphrase protected SSL key

I have an Apache 2 installation on Debian with mod_ssl installed. The server private key is protected by a passphase that needs to be entered on start-up. The error and access logs are subject to ...
2
votes
0answers
115 views

Logrotate does not auto rotate when based on log size

I have a custom application (myApp) which is writing logs to the file '/var/log/myApp'. I can see the logs being written and it works fine. Now I am trying to setup logrotate for this file and for ...
2
votes
2answers
2k views

Is it possible to run one logrotate check manually?

Is it possible to run one iteration of logrotate manually without scheduling it on some interval?
2
votes
2answers
1k views

How can I install cronolog in Tomcat for daily log rotate?

When i wanted to lotate log daily, I was editing catalina.sh in other to redirect log to cronolog. I think it is bad solution because catalina.sh file is executable shell file. Can I config it using ...
1
vote
1answer
11 views

Log parser process is not allowing log4j to rotate the logs

I wrote a log parser that constantly reads the log file gets specific lines from the log and writes them into database. Logs are generated via LOG4J. Logs are being rotated when they reach specific ...
1
vote
1answer
40 views

Logrotate files with date in the file name

I am trying to configure logrotate in RHEL for tomcat6 logs. Currently, logrotate works fine for catalina.out log, it is rotated and compressed properly. The problem is with the files with date in ...
1
vote
1answer
152 views

How do I create a logrotate friendly file writer in Java or other platform?

What are the best practices for implementing a file writer/logger in Java that is compatible with logrotate? The goal would be allow logrotate to be used for all log management, instead of using ...
1
vote
0answers
53 views

logrotate-like functionality for database tables/file system files

tl;dr summary: Are there standard solutions for limiting the length of database tables and number of file system files based on number, disk space or time? I have a Java web service that allows ...
1
vote
1answer
395 views

Redis logrotate config

Does anyone have a sample logrotate config for redis? This is what I have so far /var/log/redis/*.log { daily missingok rotate 52 compress delaycompress ...
1
vote
1answer
227 views

logrotate - compression files modified x number of days

Is there a way to get logrotate to only compress files modified X number of days ago (e.g. mtime +2)
1
vote
1answer
415 views

logrotate for /var/log/cron not working?

Hi i have added the following lines in /etc/logrotate.d/syslog-ng to make /var/log/cron rotate. /var/log/cron { rotate 1 size=1k nocompress postrotate /bin/killall -HUP syslog-ng ...
1
vote
2answers
537 views

possible to logrotate rails app with nginx passenger without restart?

It is possible to do logrotate without restarting nginx (just send USR1 signal to nginx it will do the job). I wonder it is possible for my rails app (nginx passenger). It's not worth to restart my ...
1
vote
1answer
100 views

Data logged to a file; how do I rotate logs and how do I parse the data to not have 'gaps' in the data?

I've got a web application that, for performance reasons, throws any data sent into a logfile. I've got two concerns with this approach: How do I best rotate logs, in order to not lose data? For ...
1
vote
2answers
598 views

Are variables supported in logrotate configuration files?

I looked at logrotate.conf examples and everything in my /etc/logrotate.d directory. Nowhere was I able to find documentation on variables in these files. I am trying to create a config file for ...
0
votes
1answer
111 views

how to send linux log files to central server and look at them through web interface?

I have a couple of linux servers and logrotate and rsyslog are taking care of all log files. Now I was wondering whether the following is possible: keep log files locally (present) send log events ...
0
votes
2answers
200 views

logrotate compress files after the postrotate script

I have an application generating a really heavy big log file every days (~800MB a day), thus I need to compress them but since the compression takes time, I want that logrotate compress the file after ...
0
votes
1answer
267 views

logrotate says permission denied when rotating log / re-creating log file

I'm new to logrotate on linux machines... here's what I have set up in my app's logrotate.d file: /var/log/myapp.log { daily missingok create 0660 root utmp rotate 1 } I set owner permissions on ...
0
votes
1answer
211 views

Python and/or django solution for reading log files on linux?

I would like my Django application to be able to display local syslog etc files. I would like to avoid writing the logic for managing .1,.2 etc rotated files, and get an object for each log that I ...
0
votes
1answer
793 views
0
votes
3answers
406 views

Splitting log files by date or file size in Lighttpd

So far the only way I've found to do this is by telling Lighty to pipe its logs through an app called "vlogger". Is there a way to break out log files by date without introducing any external ...