source: general/sysutils/logrotate.xml@ 4c24eb0a

10.1 11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 4c24eb0a was 4c24eb0a, checked in by Pierre Labastie <pieere@…>, 3 years ago

Remove period at the end of short descriptions.
In the process, some attributes in single quotes have been changed to double
quotes, and a few attribute lists have been written on one line instead of
several lines.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@24236 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 9.0 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY logrotate-download-http "https://github.com/logrotate/logrotate/releases/download/&logrotate-version;/logrotate-&logrotate-version;.tar.xz">
8 <!ENTITY logrotate-download-ftp " ">
9 <!ENTITY logrotate-md5sum "c21e586457db80e70606b45a9d84dfe8">
10 <!ENTITY logrotate-size "160 KB">
11 <!ENTITY logrotate-buildsize "5.6 MB">
12 <!ENTITY logrotate-time "0.2 SBU (with tests)">
13]>
14
15<sect1 id="logrotate" xreflabel="logrotate-&logrotate-version;">
16 <?dbhtml filename="logrotate.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Logrotate-&logrotate-version;</title>
24
25 <indexterm zone="logrotate">
26 <primary sortas="a-logrotate">logrotate</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Logrotate</title>
31
32 <para>
33 The <application>logrotate</application> package allows automatic
34 rotation, compression, removal, and mailing of log files.
35 </para>
36
37 &lfs10_checked;
38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>
43 Download (HTTP): <ulink url="&logrotate-download-http;"/>
44 </para>
45 </listitem>
46 <listitem>
47 <para>
48 Download (FTP): <ulink url="&logrotate-download-ftp;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download MD5 sum: &logrotate-md5sum;
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download size: &logrotate-size;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Estimated disk space required: &logrotate-buildsize;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated build time: &logrotate-time;
69 </para>
70 </listitem>
71 </itemizedlist>
72
73 <bridgehead renderas="sect3">Logrotate Dependencies</bridgehead>
74
75 <bridgehead renderas="sect4">Required</bridgehead>
76 <para role="required">
77 <xref linkend="popt"/>
78 </para>
79
80 <bridgehead renderas="sect4" revision="sysv">Recommended</bridgehead>
81 <para role="recommended" revision="sysv">
82 <xref role="runtime" linkend="fcron"/> (runtime)
83 </para>
84
85 <bridgehead renderas="sect4">Optional</bridgehead>
86 <para role="optional">
87 An <xref role="runtime" linkend="server-mail"/> (runtime)
88 </para>
89
90 <para condition="html" role="usernotes">User Notes:
91 <ulink url="&blfs-wiki;/logrotate"/>
92 </para>
93 </sect2>
94
95 <sect2 role="installation">
96 <title>Installation of Logrotate</title>
97
98 <para>
99 Install <application>logrotate</application> by running the following
100 command:
101 </para>
102
103<screen><userinput>./configure --prefix=/usr &amp;&amp;
104make</userinput></screen>
105
106 <para>
107 To test the results, issue: <command>make test</command>. One test
108 fails because the very old <command>compress</command> is not
109 present and two tests fail if an MTA is not installed.
110 </para>
111
112 <para>
113 Now, as the <systemitem class="username">root</systemitem> user:
114 </para>
115
116<screen role="root"><userinput>make install</userinput></screen>
117
118 </sect2>
119
120 <sect2 role="configuration">
121 <title>Configuring Logrotate</title>
122
123 <para>
124 <application>Logrotate</application> needs a configuration file,
125 which must be passed as an argument to the command when executed. Create
126 the file as the <systemitem class="username">root</systemitem> user:
127 </para>
128
129<screen role="root"><userinput>cat &gt; /etc/logrotate.conf &lt;&lt; EOF
130<literal># Begin /etc/logrotate.conf
131
132# Rotate log files weekly
133weekly
134
135# Don't mail logs to anybody
136nomail
137
138# If the log file is empty, it will not be rotated
139notifempty
140
141# Number of backups that will be kept
142# This will keep the 2 newest backups only
143rotate 2
144
145# Create new empty files after rotating old ones
146# This will create empty log files, with owner
147# set to root, group set to sys, and permissions 664
148create 0664 root sys
149
150# Compress the backups with gzip
151compress
152
153# No packages own lastlog or wtmp -- rotate them here
154/var/log/wtmp {
155 monthly
156 create 0664 root utmp
157 rotate 1
158}
159
160/var/log/lastlog {
161 monthly
162 rotate 1
163}
164
165# Some packages drop log rotation info in this directory
166# so we include any file in it.
167include /etc/logrotate.d
168
169# End /etc/logrotate.conf</literal>
170EOF
171
172chmod -v 0644 /etc/logrotate.conf</userinput></screen>
173
174 <para>
175 Now create the <filename class='directory'>/etc/logrotate.d</filename>
176 directory as the <systemitem class="username">root</systemitem> user:
177 </para>
178
179<screen role="root"><userinput>mkdir -p /etc/logrotate.d</userinput></screen>
180
181 <para>
182 At this point additional log rotation commands can be entered, typically
183 in the <filename class='directory'>/etc/logrotate.d</filename> directory.
184 For example:
185 </para>
186
187<screen role="nodump"><userinput>cat &gt; /etc/logrotate.d/sys.log &lt;&lt; EOF
188<literal>/var/log/sys.log {
189 # If the log file is larger than 100kb, rotate it
190 size 100k
191 rotate 5
192 weekly
193 postrotate
194 /bin/killall -HUP syslogd
195 endscript
196}</literal>
197EOF
198
199chmod -v 0644 /etc/logrotate.d/sys.log</userinput></screen>
200
201 <para>
202 You can designate multiple files in one entry:
203 </para>
204
205<screen role="nodump"><userinput>cat &gt; /etc/logrotate.d/example.log &lt;&lt; EOF
206<literal>file1
207file2
208file3 {
209 ...
210 postrotate
211 ...
212 endscript
213}</literal>
214EOF
215
216chmod -v 0644 /etc/logrotate.d/example.log</userinput></screen>
217
218 <para>
219 You can use in the same line the list of files: file1 file2 file3.
220 See the logrotate man page or <ulink
221 url='http://www.techrepublic.com/article/manage-linux-log-files-with-logrotate/'/>
222 for more examples.
223 </para>
224
225 <para>
226 The command <command>logrotate /etc/logrotate.conf</command> can be
227 run manually, however, the command should be run daily.
228 Other useful commands are <command>logrotate -d
229 /etc/logrotate.conf</command> for debugging purposes and
230 <command>logrotate -f /etc/logrotate.conf</command> forcing the
231 logrotate commands to be run immediately. Combining the previous options
232 <option>-df</option>, you can debug the effect of the force command.
233 When debugging, the commands are only simulated and are not actually run.
234 As a result, errors about files not existing will eventually appear because
235 the files are not actually created.
236 </para>
237
238 <para>
239 To run the <command>logrotate</command> command daily,
240 <phrase revision="sysv">if you've installed
241 <xref linkend="fcron"/> and completed the section on periodic jobs,
242 execute</phrase><phrase revision="systemd">execute</phrase> the following
243 commands, as the <systemitem class="username">root</systemitem> user,
244 to create a <phrase revision="sysv">daily cron job:</phrase>
245 <phrase revision="systemd">systemd timer to run daily at 3:00 A.M.
246 (local time):</phrase>
247 </para>
248
249<screen role="root" revision="sysv"><userinput>cat &gt; /etc/cron.daily/logrotate.sh &lt;&lt; "EOF" &amp;&amp;
250<literal>#!/bin/bash
251/usr/sbin/logrotate /etc/logrotate.conf</literal>
252EOF
253chmod 754 /etc/cron.daily/logrotate.sh</userinput></screen>
254
255<screen role="root" revision="systemd"><userinput>cat &gt; /lib/systemd/system/logrotate.service &lt;&lt; "EOF" &amp;&amp;
256<literal>[Unit]
257Description=Runs the logrotate command
258Documentation=man:logrotate(8)
259DefaultDependencies=no
260After=local-fs.target
261Before=shutdown.target
262
263[Service]
264Type=oneshot
265RemainAfterExit=yes
266ExecStart=/usr/sbin/logrotate /etc/logrotate.conf</literal>
267EOF
268cat &gt; /lib/systemd/system/logrotate.timer &lt;&lt; "EOF" &amp;&amp;
269<literal>[Unit]
270Description=Runs the logrotate command daily at 3:00 AM
271
272[Timer]
273OnCalendar=*-*-* 3:00:00
274Persistent=true
275
276[Install]
277WantedBy=timers.target</literal>
278EOF
279systemctl enable logrotate.timer</userinput></screen>
280
281 </sect2>
282
283 <sect2 role="content">
284 <title>Contents</title>
285
286 <segmentedlist>
287 <segtitle>Installed Programs</segtitle>
288 <segtitle>Installed Library</segtitle>
289 <segtitle>Installed Directories</segtitle>
290
291 <seglistitem>
292 <seg> logrotate </seg>
293 <seg> None </seg>
294 <seg> None </seg>
295 </seglistitem>
296 </segmentedlist>
297
298 <variablelist>
299 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
300 <?dbfo list-presentation="list"?>
301 <?dbhtml list-presentation="table"?>
302
303 <varlistentry id="logrotate-prog">
304 <term><command>logrotate</command></term>
305 <listitem>
306 <para>
307 performs the log maintenance functions defined in the
308 configuration files
309 </para>
310 <indexterm zone="logrotate logrotate-prog">
311 <primary sortas="b-logrotate-prog">logrotate</primary>
312 </indexterm>
313 </listitem>
314 </varlistentry>
315
316 </variablelist>
317
318 </sect2>
319
320</sect1>
Note: See TracBrowser for help on using the repository browser.