blob: fc07169ab4cc3fcc54582214d682cd1187e55959 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
|
<!DOCTYPE html>
<html dir="ltr" lang="en">
<head>
<meta charset='utf-8'>
<title>1. Logrotate</title>
</head>
<body>
<a href="index.html">Tools Index</a>
<h1 id="logrotate">1. Logrotate</h1>
<p><a href="https://fedorahosted.org/logrotate/">Logrotate</a>
allows automatic rotation, compression,
removal, and mailing of log files. Each log file may
be handled daily, weekly, monthly, or when it grows
too large. I have used Mikhail Kolesnik from openbunker,
use syslog-ng as example how to create package from now on.</p>
<pre>
$ sudo prt-get depinst logrotate
$ sudo vim /etc/logrotate.conf
</pre>
<pre>
IMPORTANTE
Preciso por o logrotate a comprimir apenas depois do
segundo ciclo para o samhain ficar feliz.
Thus log rotation will be handled gracefully as long
as the inode is kept (i.e. the old file is moved rather than copied)
and the first rotated file is not compressed (the logrotate tool can
be told to compress only after the second cycle, and on Debian this
seems to be standard anyway).
</pre>
<p>This is just an example configuration, review to match <a href="syslog-ng.html">syslog-ng</a> and other tools that write logs</p>
<pre>
# see "man logrotate" for details
# rotate log files weekly
weekly
# keep 4 weeks worth of backlogs
rotate 4
# create new (empty) log files after rotating old ones
create
# uncomment this if you want your log files compressed
#compress
olddir /var/log/old
maxsize 1M
# some packages can drop log rotation information into
# this directory
include /etc/logrotate.d
# few generic files to rotate
/var/log/wtmp {
monthly
create 0644 root root
rotate 1
}
/var/log/btmp {
monthly
create 0600 root root
rotate 1
}
# system-specific logs may be also be configured here.
/var/log/auth {
missingok
notifempty
compress
delaycompress
sharedscripts
postrotate
/etc/init.d/syslog-ng reload
endscript
}
/var/log/sudo {
missingok
notifempty
compress
delaycompress
sharedscripts
postrotate
/etc/init.d/syslog-ng reload
endscript
}
/var/log/cron {
missingok
notifempty
compress
delaycompress
sharedscripts
postrotate
/etc/init.d/syslog-ng reload
endscript
}
/var/log/daemon {
rotate 7
missingok
notifempty
compress
delaycompress
sharedscripts
postrotate
/etc/init.d/syslog-ng reload
endscript
}
/var/log/debug {
missingok
notifempty
compress
delaycompress
sharedscripts
postrotate
/etc/init.d/syslog-ng reload
endscript
}
/var/log/error {
missingok
notifempty
compress
delaycompress
sharedscripts
postrotate
/etc/init.d/syslog-ng reload
endscript
}
/var/log/iptables {
# uncomment this if you want your log files compressed
delaycompress
compress
postrotate
/etc/rc.d/syslog-ng reload >/dev/null
endscript
}
/var/log/kernel {
missingok
notifempty
compress
delaycompress
sharedscripts
postrotate
/etc/init.d/syslog-ng reload
endscript
}
/var/log/lpr {
missingok
notifempty
compress
delaycompress
sharedscripts
postrotate
/etc/init.d/syslog-ng reload
endscript
}
/var/log/mail.err {
missingok
notifempty
compress
delaycompress
sharedscripts
postrotate
/etc/init.d/syslog-ng reload
endscript
}
/var/log/mail.info {
missingok
notifempty
compress
delaycompress
sharedscripts
postrotate
/etc/init.d/syslog-ng reload
endscript
}
/var/log/mail {
missingok
notifempty
compress
delaycompress
sharedscripts
postrotate
/etc/init.d/syslog-ng reload
endscript
}
/var/log/mail.warn {
missingok
notifempty
compress
delaycompress
sharedscripts
postrotate
/etc/init.d/syslog-ng reload
endscript
}
/var/log/messages {
missingok
notifempty
compress
delaycompress
sharedscripts
postrotate
/etc/init.d/syslog-ng reload
endscript
}
/var/log/user {
missingok
notifempty
compress
delaycompress
sharedscripts
postrotate
/etc/init.d/syslog-ng reload
endscript
}
/var/log/uucp {
missingok
notifempty
compress
delaycompress
sharedscripts
postrotate
/etc/init.d/syslog-ng reload
endscript
}
/var/log/syslog-ng {
rotate 7
daily
compress
delaycompress
sharedscripts
postrotate
/etc/init.d/syslog-ng reload
endscript
}
/var/log/dnsmasq {
# uncomment this if you want your log files compressed
delaycompress
compress
postrotate
/etc/rc.d/syslog-ng reload >/dev/null
endscript
}
/var/log/pgsql {
# create new (empty) log files after rotating old ones
create 0644 root root
# uncomment this if you want your log files compressed
delaycompress
compress
notifempty
maxsize 5M
postrotate
/etc/rc.d/syslog-ng reload >/dev/null
endscript
}
/var/log/git-daemon {
# uncomment this if you want your log files compressed
delaycompress
compress
postrotate
/etc/rc.d/syslog-ng reload >/dev/null
endscript
}
/var/log/gitolite {
# uncomment this if you want your log files compressed
delaycompress
compress
postrotate
/etc/rc.d/syslog-ng reload >/dev/null
endscript
}
/var/log/php-fpm {
# uncomment this if you want your log files compressed
delaycompress
compress
postrotate
/etc/rc.d/syslog-ng reload >/dev/null
endscript
}
/var/log/php {
# uncomment this if you want your log files compressed
delaycompress
compress
postrotate
/etc/rc.d/syslog-ng reload >/dev/null
endscript
}
/var/log/nginx_access {
# uncomment this if you want your log files compressed
delaycompress
compress
postrotate
/etc/rc.d/syslog-ng reload >/dev/null
endscript
}
/var/log/nginx_error {
# uncomment this if you want your log files compressed
delaycompress
compress
postrotate
/etc/rc.d/syslog-ng reload >/dev/null
endscript
}
/var/log/nginx/tribu_error.log {
# uncomment this if you want your log files compressed
delaycompress
compress
olddir /var/log/old/nginx
postrotate
/etc/rc.d/syslog-ng reload >/dev/null
endscript
}
/var/log/nginx/tribu_access.log {
# uncomment this if you want your log files compressed
delaycompress
compress
olddir /var/log/old/nginx
postrotate
/etc/rc.d/syslog-ng reload >/dev/null
endscript
}
</pre>
<p>To force logrotate to test configuration;</p>
<pre>
# logrotate -f /etc/logrotate.conf
</pre>
<p>This is part of the Tribu System Documentation.
Copyright (C) 2020
Tribu Team.
See the file <a href="fdl-1.3-standalone.html">Gnu Free Documentation License</a>
for copying conditions.</p>
</body>
</html>
|