]> CyberLeo.Net >> Repos - FreeBSD/releng/9.0.git/blob - usr.sbin/newsyslog/newsyslog.8
Copy stable/9 to releng/9.0 as part of the FreeBSD 9.0-RELEASE release
[FreeBSD/releng/9.0.git] / usr.sbin / newsyslog / newsyslog.8
1 .\" This file contains changes from the Open Software Foundation.
2 .\"
3 .\"     from: @(#)newsyslog.8
4 .\" $FreeBSD$
5 .\"
6 .\" Copyright 1988, 1989 by the Massachusetts Institute of Technology
7 .\"
8 .\" Permission to use, copy, modify, and distribute this software
9 .\" and its documentation for any purpose and without fee is
10 .\" hereby granted, provided that the above copyright notice
11 .\" appear in all copies and that both that copyright notice and
12 .\" this permission notice appear in supporting documentation,
13 .\" and that the names of M.I.T. and the M.I.T. S.I.P.B. not be
14 .\" used in advertising or publicity pertaining to distribution
15 .\" of the software without specific, written prior permission.
16 .\" M.I.T. and the M.I.T. S.I.P.B. make no representations about
17 .\" the suitability of this software for any purpose.  It is
18 .\" provided "as is" without express or implied warranty.
19 .\"
20 .Dd January 31, 2011
21 .Dt NEWSYSLOG 8
22 .Os
23 .Sh NAME
24 .Nm newsyslog
25 .Nd maintain system log files to manageable sizes
26 .Sh SYNOPSIS
27 .Nm
28 .Op Fl CFNPnrsv
29 .Op Fl a Ar directory
30 .Op Fl d Ar directory
31 .Op Fl f Ar config_file
32 .Op Fl S Ar pidfile
33 .Op Fl t Ar timefmt
34 .Op Oo Fl R Ar tagname Oc Ar
35 .Sh DESCRIPTION
36 The
37 .Nm
38 utility should be scheduled to run periodically by
39 .Xr cron 8 .
40 When it is executed it archives log files if necessary.
41 If a log file
42 is determined to require archiving,
43 .Nm
44 rearranges the files so that
45 .Dq Va logfile
46 is empty,
47 .Dq Va logfile Ns Li \&.0
48 has
49 the last period's logs in it,
50 .Dq Va logfile Ns Li \&.1
51 has the next to last
52 period's logs in it, and so on, up to a user-specified number of
53 archived logs.
54 It is also possible to let archived log filenames be created using the
55 time the log file was archived instead of the sequential number using
56 the
57 .Fl t
58 option.
59 Optionally the archived logs can be compressed to save
60 space.
61 .Pp
62 A log can be archived for three reasons:
63 .Bl -enum -offset indent
64 .It
65 It is larger than the configured size (in kilobytes).
66 .It
67 A configured number of hours have elapsed since the log was last
68 archived.
69 .It
70 This is the specific configured hour for rotation of the log.
71 .El
72 .Pp
73 The granularity of
74 .Nm
75 is dependent on how often it is scheduled to run by
76 .Xr cron 8 .
77 Since the program is quite fast, it may be scheduled to run every hour
78 without any ill effects,
79 and mode three (above) assumes that this is so.
80 .Sh OPTIONS
81 The following options can be used with
82 .Nm :
83 .Bl -tag -width indent
84 .It Fl f Ar config_file
85 Instruct
86 .Nm
87 to use
88 .Ar config_file
89 instead of
90 .Pa /etc/newsyslog.conf
91 for its configuration file.
92 .It Fl a Ar directory
93 Specify a
94 .Ar directory
95 into which archived log files will be written.
96 If a relative path is given,
97 it is appended to the path of each log file
98 and the resulting path is used as the directory
99 into which the archived log for that log file will be written.
100 If an absolute path is given,
101 all archived logs are written into the given
102 .Ar directory .
103 If any component of the path
104 .Ar directory
105 does not exist,
106 it will be created when
107 .Nm
108 is run.
109 .It Fl d Ar directory
110 Specify a
111 .Ar directory
112 which all log files will be relative to.
113 To allow archiving of logs outside the root, the
114 .Ar directory
115 passed to the
116 .Fl a
117 option is unaffected.
118 .It Fl v
119 Place
120 .Nm
121 in verbose mode.
122 In this mode it will print out each log and its
123 reasons for either trimming that log or skipping it.
124 .It Fl n
125 Cause
126 .Nm
127 not to trim the logs, but to print out what it would do if this option
128 were not specified.
129 .It Fl r
130 Remove the restriction that
131 .Nm
132 must be running as root.
133 Of course,
134 .Nm
135 will not be able to send a HUP signal to
136 .Xr syslogd 8
137 so this option should only be used in debugging.
138 .It Fl s
139 Specify that
140 .Nm
141 should not send any signals to any daemon processes that it would
142 normally signal when rotating a log file.
143 For any log file which is rotated, this option will usually also
144 mean the rotated log file will not be compressed if there is a
145 daemon which would have been signalled without this option.
146 However, this option is most likely to be useful when specified
147 with the
148 .Fl R
149 option, and in that case the compression will be done.
150 .It Fl t Ar timefmt
151 If specified
152 .Nm
153 will create the
154 .Dq rotated
155 logfiles using the specified time format instead of the default
156 sequential filenames.
157 The time format is described in the
158 .Xr strftime 3
159 manual page.
160 If the
161 .Ar timefmt
162 argument is set to an empty string or the string
163 .Dq DEFAULT ,
164 the default built in time format
165 is used.
166 If the
167 .Ar timefmt
168 string is changed the old files created using the previous time format
169 will not be be automatically removed (unless the new format is very
170 similar to the old format).
171 This is also the case when changing from sequential filenames to time
172 based file names, and the other way around.
173 The time format should contain at least year, month, day, and hour to
174 make sure rotating of old logfiles can select the correct logfiles.
175 .It Fl C
176 If specified once, then
177 .Nm
178 will create any log files which do not exist, and which have the
179 .Sy C
180 flag specified in their config file entry.
181 If specified multiple times, then
182 .Nm
183 will create all log files which do not already exist.
184 If log files are given on the command-line, then the
185 .Fl C
186 or
187 .Fl CC
188 will only apply to those specific log files.
189 .It Fl F
190 Force
191 .Nm
192 to trim the logs, even if the trim conditions have not been met.
193 This
194 option is useful for diagnosing system problems by providing you with
195 fresh logs that contain only the problems.
196 .It Fl N
197 Do not perform any rotations.
198 This option is intended to be used with the
199 .Fl C
200 or
201 .Fl CC
202 options when creating log files is the only objective.
203 .It Fl P
204 Prevent further action if we should send signal but the
205 .Dq pidfile
206 is empty or does not exist.
207 .It Fl R Ar tagname
208 Specify that
209 .Nm
210 should rotate a given list of files, even if trim conditions are not
211 met for those files.
212 The
213 .Ar tagname
214 is only used in the messages written to the log files which are
215 rotated.
216 This differs from the
217 .Fl F
218 option in that one or more log files must also be specified, so that
219 .Nm
220 will only operate on those specific files.
221 This option is mainly intended for the daemons or programs which write
222 some log files, and want to trigger a rotate based on their own criteria.
223 With this option they can execute
224 .Nm
225 to trigger the rotate when they want it to happen, and still give the
226 system administrator a way to specify the rules of rotation (such as how
227 many backup copies are kept, and what kind of compression is done).
228 When a daemon does execute
229 .Nm
230 with the
231 .Fl R
232 option, it should make sure all of the log files are closed before
233 calling
234 .Nm ,
235 and then it should re-open the files after
236 .Nm
237 returns.
238 Usually the calling process will also want to specify the
239 .Fl s
240 option, so
241 .Nm
242 will not send a signal to the very process which called it to force
243 the rotate.
244 Skipping the signal step will also mean that
245 .Nm
246 will return faster, since
247 .Nm
248 normally waits a few seconds after any signal that is sent.
249 .It Fl S Ar pidfile
250 Use
251 .Ar pidfile
252 as
253 .Xr syslogd 8 Ns 's
254 pidfile.
255 .El
256 .Pp
257 If additional command line arguments are given,
258 .Nm
259 will only examine log files that match those arguments; otherwise, it
260 will examine all files listed in the configuration file.
261 .Sh FILES
262 .Bl -tag -width /etc/newsyslog.confxxxx -compact
263 .It Pa /etc/newsyslog.conf
264 .Nm
265 configuration file
266 .El
267 .Sh COMPATIBILITY
268 Previous versions of the
269 .Nm
270 utility used the dot (``.'') character to
271 distinguish the group name.
272 Beginning with
273 .Fx 3.3 ,
274 this has been changed to a colon (``:'') character so that user and group
275 names may contain the dot character.
276 The dot (``.'') character is still
277 accepted for backwards compatibility.
278 .Sh SEE ALSO
279 .Xr bzip2 1 ,
280 .Xr gzip 1 ,
281 .Xr xz 1 ,
282 .Xr syslog 3 ,
283 .Xr newsyslog.conf 5 ,
284 .Xr chown 8 ,
285 .Xr syslogd 8
286 .Sh HISTORY
287 The
288 .Nm
289 utility originated from
290 .Nx
291 and first appeared in
292 .Fx 2.2 .
293 .Sh AUTHORS
294 .An Theodore Ts'o ,
295 MIT Project Athena
296 .Pp
297 Copyright 1987, Massachusetts Institute of Technology
298 .Sh BUGS
299 Does not yet automatically read the logs to find security breaches.