]> granicus.if.org Git - apache/blob - docs/man/rotatelogs.8
Fix alignment in a <highlight> block.
[apache] / docs / man / rotatelogs.8
1 .\" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
2 .\" DO NOT EDIT! Generated from XML source.
3 .\" XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
4 .de Sh \" Subsection
5 .br
6 .if t .Sp
7 .ne 5
8 .PP
9 \fB\\$1\fR
10 .PP
11 ..
12 .de Sp \" Vertical space (when we can't use .PP)
13 .if t .sp .5v
14 .if n .sp
15 ..
16 .de Ip \" List item
17 .br
18 .ie \\n(.$>=3 .ne \\$3
19 .el .ne 3
20 .IP "\\$1" \\$2
21 ..
22 .TH "ROTATELOGS" 8 "2018-09-27" "Apache HTTP Server" "rotatelogs"
23
24 .SH NAME
25 rotatelogs \- Piped logging program to rotate Apache logs
26
27 .SH "SYNOPSIS"
28  
29 .PP
30 \fB\fBrotatelogs\fR [ -\fBl\fR ] [ -\fBL\fR \fIlinkname\fR ] [ -\fBp\fR \fIprogram\fR ] [ -\fBf\fR ] [ -\fBD\fR ] [ -\fBt\fR ] [ -\fBv\fR ] [ -\fBe\fR ] [ -\fBc\fR ] [ -\fBn\fR \fInumber-of-files\fR ] \fIlogfile\fR \fIrotationtime\fR|\fIfilesize\fR(B|K|M|G) [ \fIoffset\fR ]\fR
31  
32
33 .SH "SUMMARY"
34  
35 .PP
36 \fBrotatelogs\fR is a simple program for use in conjunction with Apache's piped logfile feature\&. It supports rotation based on a time interval or maximum size of the log\&.
37  
38
39 .SH "OPTIONS"
40  
41  
42 .TP
43 \fB-l\fR
44 Causes the use of local time rather than GMT as the base for the interval or for \fBstrftime(3)\fR formatting with size-based rotation\&.  
45 .TP
46 \fB-L\fR \fIlinkname\fR
47 Causes a hard link to be made from the current logfile to the specified link name\&. This can be used to watch the log continuously across rotations using a command like \fBtail -F linkname\fR\&.  
48 .TP
49 \fB-p\fR \fIprogram\fR
50 If given, \fBrotatelogs\fR will execute the specified program every time a new log file is opened\&. The filename of the newly opened file is passed as the first argument to the program\&. If executing after a rotation, the old log file is passed as the second argument\&. \fBrotatelogs\fR does not wait for the specified program to terminate before continuing to operate, and will not log any error code returned on termination\&. The spawned program uses the same stdin, stdout, and stderr as rotatelogs itself, and also inherits the environment\&.  
51 .TP
52 \fB-f\fR
53 Causes the logfile to be opened immediately, as soon as \fBrotatelogs\fR starts, instead of waiting for the first logfile entry to be read (for non-busy sites, there may be a substantial delay between when the server is started and when the first request is handled, meaning that the associated logfile does not "exist" until then, which causes problems from some automated logging tools)  
54 .TP
55 \fB-D\fR
56 Creates the parent directories of the path that the log file will be placed in if they do not already exist\&. This allows \fBstrftime(3)\fR formatting to be used in the path and not just the filename\&.  
57 .TP
58 \fB-t\fR
59 Causes the logfile to be truncated instead of rotated\&. This is useful when a log is processed in real time by a command like tail, and there is no need for archived data\&. No suffix will be added to the filename, however format strings containing '%' characters will be respected\&.  
60 .TP
61 \fB-v\fR
62 Produce verbose output on STDERR\&. The output contains the result of the configuration parsing, and all file open and close actions\&.  
63 .TP
64 \fB-e\fR
65 Echo logs through to stdout\&. Useful when logs need to be further processed in real time by a further tool in the chain\&.  
66 .TP
67 \fB-c\fR
68 Create log file for each interval, even if empty\&.  
69 .TP
70 \fB-n \fInumber-of-files\fR\fR
71 Use a circular list of filenames without timestamps\&. With -n 3, the series of log files opened would be "logfile", "logfile\&.1", "logfile\&.2", then overwriting "logfile"\&. Available in 2\&.4\&.5 and later\&.  
72 .TP
73 \fB\fIlogfile\fR\fR
74 .PP The path plus basename of the logfile\&. If \fIlogfile\fR includes any '%' characters, it is treated as a format string for \fBstrftime(3)\fR\&. Otherwise, the suffix \fI\&.nnnnnnnnnn\fR is automatically added and is the time in seconds (unless the -t option is used)\&. Both formats compute the start time from the beginning of the current period\&. For example, if a rotation time of 86400 is specified, the hour, minute, and second fields created from the \fBstrftime(3)\fR format will all be zero, referring to the beginning of the current 24-hour period (midnight)\&. .PP When using \fBstrftime(3)\fR filename formatting, be sure the log file format has enough granularity to produce a different file name each time the logs are rotated\&. Otherwise rotation will overwrite the same file instead of starting a new one\&. For example, if \fIlogfile\fR was \fB/var/log/errorlog\&.%Y-%m-%d\fR with log rotation at 5 megabytes, but 5 megabytes was reached twice in the same day, the same log file name would be produced and log rotation would keep writing to the same file\&.  
75 .TP
76 \fB\fIrotationtime\fR\fR
77 The time between log file rotations in seconds\&. The rotation occurs at the beginning of this interval\&. For example, if the rotation time is 3600, the log file will be rotated at the beginning of every hour; if the rotation time is 86400, the log file will be rotated every night at midnight\&. (If no data is logged during an interval, no file will be created\&.)  
78 .TP
79 \fB\fIfilesize\fR(B|K|M|G)\fR
80 The maximum file size in followed by exactly one of the letters \fBB\fR (Bytes), \fBK\fR (KBytes), \fBM\fR (MBytes) or \fBG\fR (GBytes)\&. .PP When time and size are specified, the size must be given after the time\&. Rotation will occur whenever either time or size limits are reached\&.  
81 .TP
82 \fB\fIoffset\fR\fR
83 The number of minutes offset from UTC\&. If omitted, zero is assumed and UTC is used\&. For example, to use local time in the zone UTC -5 hours, specify a value of \fB-300\fR for this argument\&. In most cases, \fB-l\fR should be used instead of specifying an offset\&.  
84  
85 .SH "EXAMPLES"
86  
87 .nf
88
89      CustomLog "|bin/rotatelogs /var/log/logfile 86400" common
90
91 .fi
92  
93 .PP
94 This creates the files /var/log/logfile\&.nnnn where nnnn is the system time at which the log nominally starts (this time will always be a multiple of the rotation time, so you can synchronize cron scripts with it)\&. At the end of each rotation time (here after 24 hours) a new log is started\&.
95  
96 .nf
97
98      CustomLog "|bin/rotatelogs -l /var/log/logfile\&.%Y\&.%m\&.%d 86400" common
99
100 .fi
101  
102 .PP
103 This creates the files /var/log/logfile\&.yyyy\&.mm\&.dd where yyyy is the year, mm is the month, and dd is the day of the month\&. Logging will switch to a new file every day at midnight, local time\&.
104  
105 .nf
106
107      CustomLog "|bin/rotatelogs /var/log/logfile 5M" common
108
109 .fi
110  
111 .PP
112 This configuration will rotate the logfile whenever it reaches a size of 5 megabytes\&.
113  
114 .nf
115
116      ErrorLog "|bin/rotatelogs /var/log/errorlog\&.%Y-%m-%d-%H_%M_%S 5M"
117
118 .fi
119  
120 .PP
121 This configuration will rotate the error logfile whenever it reaches a size of 5 megabytes, and the suffix to the logfile name will be created of the form \fBerrorlog\&.YYYY-mm-dd-HH_MM_SS\fR\&.
122  
123 .nf
124
125      CustomLog "|bin/rotatelogs -t /var/log/logfile 86400" common
126
127 .fi
128  
129 .PP
130 This creates the file /var/log/logfile, truncating the file at startup and then truncating the file once per day\&. It is expected in this scenario that a separate process (such as tail) would process the file in real time\&.
131  
132 .SH "PORTABILITY"
133  
134 .PP
135 The following logfile format string substitutions should be supported by all \fBstrftime(3)\fR implementations, see the \fBstrftime(3)\fR man page for library-specific extensions\&.
136   
137 .Ip "\(bu \s-1\fB%A\fR\s0 \- full weekday name (localized)
138  
139 .Ip "\(bu \s-1\fB%a\fR\s0 \- 3-character weekday name (localized)
140  
141 .Ip "\(bu \s-1\fB%B\fR\s0 \- full month name (localized)
142  
143 .Ip "\(bu \s-1\fB%b\fR\s0 \- 3-character month name (localized)
144  
145 .Ip "\(bu \s-1\fB%c\fR\s0 \- date and time (localized)
146  
147 .Ip "\(bu \s-1\fB%d\fR\s0 \- 2-digit day of month
148  
149 .Ip "\(bu \s-1\fB%H\fR\s0 \- 2-digit hour (24 hour clock)
150  
151 .Ip "\(bu \s-1\fB%I\fR\s0 \- 2-digit hour (12 hour clock)
152  
153 .Ip "\(bu \s-1\fB%j\fR\s0 \- 3-digit day of year
154  
155 .Ip "\(bu \s-1\fB%M\fR\s0 \- 2-digit minute
156  
157 .Ip "\(bu \s-1\fB%m\fR\s0 \- 2-digit month
158  
159 .Ip "\(bu \s-1\fB%p\fR\s0 \- am/pm of 12 hour clock (localized)
160  
161 .Ip "\(bu \s-1\fB%S\fR\s0 \- 2-digit second
162  
163 .Ip "\(bu \s-1\fB%U\fR\s0 \- 2-digit week of year (Sunday first day of week)
164  
165 .Ip "\(bu \s-1\fB%W\fR\s0 \- 2-digit week of year (Monday first day of week)
166  
167 .Ip "\(bu \s-1\fB%w\fR\s0 \- 1-digit weekday (Sunday first day of week)
168  
169 .Ip "\(bu \s-1\fB%X\fR\s0 \- time (localized)
170  
171 .Ip "\(bu \s-1\fB%x\fR\s0 \- date (localized)
172  
173 .Ip "\(bu \s-1\fB%Y\fR\s0 \- 4-digit year
174  
175 .Ip "\(bu \s-1\fB%y\fR\s0 \- 2-digit year
176  
177 .Ip "\(bu \s-1\fB%Z\fR\s0 \- time zone name
178  
179 .Ip "\(bu \s-1\fB%%\fR\s0 \- literal `%'
180