No empty .Rs/.Re
[netbsd-mini2440.git] / usr.bin / newsyslog / newsyslog.8
blob15d4c103dcd99dfc67f2dc1266aa3cf1e08fd035
1 .\"     $NetBSD: newsyslog.8,v 1.35 2007/12/21 05:40:59 dogcow Exp $
2 .\"
3 .\" Copyright (c) 1999, 2000 Andrew Doran <ad@NetBSD.org>
4 .\" All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. The name of the author may not be used to endorse or promote products
12 .\"    derived from this software without specific prior written permission
13 .\"
14 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 .\"
25 .\" This file contains changes from the Open Software Foundation.
26 .\"
27 .\" Copyright 1988, 1989 by the Massachusetts Institute of Technology
28 .\"
29 .\" Permission to use, copy, modify, and distribute this software
30 .\" and its documentation for any purpose and without fee is
31 .\" hereby granted, provided that the above copyright notice
32 .\" appear in all copies and that both that copyright notice and
33 .\" this permission notice appear in supporting documentation,
34 .\" and that the names of M.I.T. and the M.I.T. S.I.P.B. not be
35 .\" used in advertising or publicity pertaining to distribution
36 .\" of the software without specific, written prior permission.
37 .\" M.I.T. and the M.I.T. S.I.P.B. make no representations about
38 .\" the suitability of this software for any purpose.  It is
39 .\" provided "as is" without express or implied warranty.
40 .\"
41 .\" from FreeBSD: newsyslog.8,v 1.14.2.1 1999/02/25 18:38:33 wollman Exp
42 .\"
43 .Dd December 21, 2007
44 .Dt NEWSYSLOG 8
45 .Os
46 .Sh NAME
47 .Nm newsyslog
48 .Nd maintain system log files to manageable sizes
49 .Sh SYNOPSIS
50 .Nm newsyslog
51 .Op Fl nrsvF
52 .Op Fl f Ar config_file
53 .Op Pa file ...
54 .Sh DESCRIPTION
55 .Nm
56 is a program that should be scheduled to run periodically by
57 .Xr cron 8 .
58 When it is executed it archives log files if necessary.
59 If a log file is determined to require archiving,
60 .Nm
61 rearranges the files so that
62 .Dq Va logfile
63 is empty,
64 .Dq Va logfile Ns Li \&.0
65 has
66 the last period's logs in it,
67 .Dq Va logfile Ns Li \&.1
68 has the next to last
69 period's logs in it and so on, up to a user-specified number of
70 archived logs.
71 Optionally the archived logs can be compressed to save
72 space.
73 .Pp
74 A log can be archived for three reasons:
75 .Bl -enum -offset indent
76 .It
77 It is larger than the configured size (in kilobytes).
78 .It
79 A configured number of hours have elapsed since the log was last
80 archived.
81 .It
82 The configured time for rotation of the log occurred within the last 60
83 minutes.
84 .El
85 .Pp
86 The granularity of
87 .Nm
88 is dependent on how often it is scheduled to run by
89 .Xr cron 8 .
90 It is recommended that
91 .Nm
92 be run once hourly.
93 .Pp
94 When starting up,
95 .Nm
96 reads in a configuration file to determine which logs may potentially
97 be archived.
98 By default, this configuration file is
99 .Pa /etc/newsyslog.conf .
100 Each line of the file contains information about a particular log file
101 that should be handled by
102 .Nm .
103 Each line has six mandatory fields and three optional fields, with
104 whitespace separating each field.
105 Blank lines or lines beginning with
106 .Dq #
107 are ignored.
108 The fields of the configuration file are as
109 follows:
111 .Bl -tag -width indent
112 .It Ar logfile_name
113 Name of the system log file to be archived.
114 .It Ar owner:group
115 This optional field specifies the owner and group for the archive file.
117 .Dq \&:
118 is essential, even if the
119 .Ar owner
121 .Ar group
122 field is left blank.
123 The field may be numeric, or a name which is present in
124 .Pa /etc/passwd
126 .Pa /etc/group .
127 For backward compatibility,
128 .Dq \&\.
129 is usable in lieu of
130 .Dq \&: ,
131 however use of this feature is discouraged.
132 .It Ar mode
133 Specify the mode of the log file and archives.
134 .It Ar ngen
135 Specify the number of archive files to be kept
136 besides the log file itself.
137 .It Ar size
138 When the size of the log file reaches
139 .Ar size
140 kilobytes, the log file will be trimmed as described above.
141 If this field is replaced by an asterisk
142 .Pq Ql \&* ,
143 then the size of the log file is not taken into account
144 when determining when to trim the log file.
145 .It Ar when
147 .Ar when
148 field can consist of an interval, a specific time, or both.
149 If the
150 .Ar when
151 field is an asterisk
152 .Pq Ql \&*
153 log rotation will depend only on the contents of the
154 .Ar size
155 field.
156 Otherwise, the
157 .Ar when
158 field consists of an optional interval in hours, optionally followed
159 by an
160 .So Li \&@ Sc Ns No -sign
161 and a time in a restricted
162 .Tn ISO 8601
163 format or by an
164 .So Li \&$ Sc Ns No -sign
165 and a time specification for logfile rotation at a fixed time once
166 per day, per week or per month.
168 If a time is specified, the log file will only be trimmed if
170 is run within one hour of the specified time.
171 If an
172 interval is specified, the log file will be trimmed if that many hours have
173 passed since the last rotation.
174 When both a time and an interval are
175 specified, the log will be trimmed if either condition is met.
177 There is no provision for specification of a timezone.
178 There is
179 little point in specifying an explicit minutes or seconds component in
180 the current implementation, since the only comparison is `within the
181 hour'.
183 .Em ISO 8601 restricted time format
185 The lead-in character for a restricted
186 .Tn ISO 8601
187 time is
189 .So Li \&@ Sc Ns No -sign .
190 The particular format of the time in restricted
191 .Tn ISO 8601
193 .Sm off
199 .Va \&cc
201 .Va \&yy
203 .Va \&mm
205 .Va \&dd
208 .Li \&T
210 .Va \&hh
212 .Va \&mm
214 .Va \&ss
219 .Oc .
220 .Sm on
221 Optional date fields default to the appropriate component of the
222 current date; optional time fields default to midnight; hence if today
223 is January 22, 1999, the following date specifications are all
224 equivalent:
226 .Bl -item -compact -offset indent
228 .Sq Li 19990122T000000
230 .Sq Li 990122T000000
232 .Sq Li 0122T000000
234 .Sq Li 22T000000
236 .Sq Li T000000
238 .Sq Li T0000
240 .Sq Li T00
242 .Sq Li 22T
244 .Sq Li \&T
246 .Sq Li \&
249 .Em Day, week and month time format
251 The lead-in character for day, week and month specification is a
252 .So Li \&$ Sc Ns No -sign .
253 The particular format of day, week and month specification is:
255 .Va D\&hh
256 .Oc ,
257 .Sm off
259 .Va W\&w
261 .Va D\&hh
264 .Sm on
266 .Sm off
268 .Va M\&dd
270 .Va D\&hh
273 .Sm on
274 respectively.
275 Optional time fields default to midnight.
276 The ranges for day and hour specifications are:
278 .Bl -tag -width Ds -compact -offset indent
279 .It Ar hh
280 hours, range 0 ... 23
281 .It Ar w
282 day of week, range 0 ... 6, 0 = Sunday
283 .It Ar dd
284 day of month, range 1 ... 31, or the letter
285 .Em L
287 .Em l
288 to specify the last day of the month.
291 Some examples:
293 .Bl -tag -width Ds -compact -offset indent
294 .It Ar $D0
295 rotate every night at midnight
296 .It Ar $D23
297 rotate every day at 23:00 hr
298 .It Ar $W0D23
299 rotate every week on Sunday at 23:00 hr
300 .It Ar $W5D16
301 rotate every week on Friday at 16:00 hr
302 .It Ar $MLD0
303 rotate at the last day of every month at midnight
304 .It Ar $M5D6
305 rotate on every 5th day of month at 6:00 hr
308 .It Ar flags
309 This field specifies any special processing that is required.
310 These flags are parsed in a case insensitive manner.
311 Individual
312 flags and their meanings:
313 .Bl -tag -width indent
314 .It Sy -
315 This flag means nothing - it is used as a spacer when no flags are set.
316 .It Sy b
317 The file is a binary file or is not in
318 .Xr syslogd 8
319 format:
321 .Tn ASCII
322 message which
324 inserts to indicate that the logs have been trimmed should not be included.
325 .It Sy c
326 Create an empty log file if none currently exists.
327 .It Sy n
328 No signal should be sent when the log is trimmed.
329 .It Sy p
330 The first historical log file (i.e. the historical log file with the suffix
331 .Dq \.0 )
332 should not be compressed.
333 .It Sy j
334 Archived log files should be compressed with
335 .Xr bzip2 1
336 to save space.
337 .It Sy z
338 Archived log files should be compressed with
339 .Xr gzip 1
340 to save space.
342 .It Ar path_to_pid_file
343 This optional field specifies
344 the file name to read to find the daemon process id.
345 If this field is missing, it defaults to the
346 .Pa /var/run/syslogd.pid
347 file.
348 A signal of type
349 .Ar sigtype
350 is sent to the process id contained in this
351 .Ar path_to_pid_file
352 file.
353 This field must start with
354 .Sq /
355 in order to be recognized properly.
356 .It Ar sigtype
357 This optional field specifies the type of signal to be sent to the daemon
358 process.
359 This may be a numeric or symbolic value.
360 By default a SIGHUP (hang-up) will be sent.
362 .Sh OPTIONS
363 The following options can be used with newsyslog:
364 .Bl -tag -width indent
365 .It Fl f Ar config_file
367 .Ar config_file
368 instead of
369 .Pa /etc/newsyslog.conf
370 as the configuration file.
371 .It Fl n
372 Do not trim the logs, but print out what would be done if this option were not
373 specified:
374 .Fl n
375 implies
376 .Fl v .
377 .It Fl r
378 Remove the restriction that
380 must be running as root.
381 When running as a regular user,
383 will not be able to send a HUP signal to
384 .Xr syslogd 8 ,
385 so this option should be used only when debugging or trimming user generated
386 logs.
387 .It Fl s
388 Do not signal daemon processes.
389 .It Fl v
390 Run in verbose mode.
391 In this mode each action that is taken will be printed.
392 .It Fl F
393 Force trimming of the logs, even if the trim conditions have not been met.
394 This option is useful for diagnosing system problems by providing you with
395 fresh logs.
398 If additional command line arguments are given,
400 will only examine log files that match those arguments; otherwise, it
401 will examine all files listed in the configuration file.
402 .Sh FILES
403 .Bl -tag -width /etc/newsyslog.confxxxx -compact
404 .It Pa /etc/newsyslog.conf
406 configuration file.
408 .Sh SEE ALSO
409 .Xr bzip2 1 ,
410 .Xr gzip 1 ,
411 .Xr syslog 3 ,
412 .Xr syslogd 8