source: general/sysutils/logrotate.xml@ 0f7ad57

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 9.0 9.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 0f7ad57 was 0f7ad57, checked in by DJ Lucas <dj@…>, 5 years ago

Use cron.daily or systemd timer to start logrotate daily.

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

  • Property mode set to 100644
File size: 8.9 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 "320046f0b9fc38337e8827d4c5a866a0">
10 <!ENTITY logrotate-size "156 KB">
11 <!ENTITY logrotate-buildsize "4.9 MB">
12 <!ENTITY logrotate-time "0.1 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 rotation,
34 compression, removal, and mailing of log files.
35 </para>
36
37 &lfs84_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><application>Logrotate</application> needs a configuration file,
124 which must be passed as an argument to the command when executed. Create
125 the file as the <systemitem class="username">root</systemitem> user:</para>
126
127<screen role="root"><userinput>cat &gt; /etc/logrotate.conf &lt;&lt; EOF
128<literal># Begin of /etc/logrotate.conf
129
130# Rotate log files weekly
131weekly
132
133# Don't mail logs to anybody
134nomail
135
136# If the log file is empty, it will not be rotated
137notifempty
138
139# Number of backups that will be kept
140# This will keep the 2 newest backups only
141rotate 2
142
143# Create new empty files after rotating old ones
144# This will create empty log files, with owner
145# set to root, group set to sys, and permissions 644
146create 0664 root sys
147
148# Compress the backups with gzip
149compress
150
151# No packages own lastlog or wtmp -- rotate them here
152/var/log/wtmp {
153 monthly
154 create 0664 root utmp
155 rotate 1
156}
157
158/var/log/lastlog {
159 monthly
160 rotate 1
161}
162
163# Some packages drop log rotation info in this directory
164# so we include any file in it.
165include /etc/logrotate.d
166
167# End of /etc/logrotate.conf</literal>
168EOF
169
170chmod -v 0644 /etc/logrotate.conf</userinput></screen>
171
172 <para>Now create the <filename class='directory'>/etc/logrotate.d</filename>
173 directory as the <systemitem class="username">root</systemitem> user:</para>
174
175<screen role="root"><userinput> mkdir -p /etc/logrotate.d</userinput></screen>
176
177 <para>At this point additional log rotation commands can be entered, typically
178 in the <filename class='directory'>/etc/logrotate.d</filename> directory.
179 For example:</para>
180
181<screen role="root"><userinput>cat &gt; /etc/logrotate.d/sys.log &lt;&lt; EOF
182<literal>/var/log/sys.log {
183 # If the log file is larger than 100kb, rotate it
184 size 100k
185 rotate 5
186 weekly
187 postrotate
188 /bin/killall -HUP syslogd
189 endscript
190}</literal>
191EOF
192
193chmod -v 0644 /etc/logrotate.d/sys.log</userinput></screen>
194
195 <para>You can designate multiple files in one entry:</para>
196
197<screen role="root"><userinput>cat &gt; /etc/logrotate.d/example.log &lt;&lt; EOF
198<literal>file1
199file2
200file3 {
201 ...
202 postrotate
203 ...
204 endscript
205}</literal>
206EOF
207
208chmod -v 0644 /etc/logrotate.d/example.log</userinput></screen>
209
210 <para>You can use in the same line the list of files: file1 file2 file3.
211 See the logrotate man page or
212 <ulink url='http://www.techrepublic.com/article/manage-linux-log-files-with-logrotate/'/>
213 for more examples.</para>
214
215 <para>The command <command>logrotate /etc/logrotate.conf</command> can be
216 run manually, however, the command should be run daily.
217 Other useful commands are <command>logrotate -d /etc/logrotate.conf</command>
218 for debugging purposes and <command>logrotate -f /etc/logrotate.conf</command>
219 forcing the logrotate commands to be run immediately. Combining the previous
220 options <option>-df</option>, you can debug the effect of the force command.
221 When debugging, the command is only simulated, not really run, thus, eventual
222 non-existing errors appear, when some intermediate files are expected,
223 because they are not actually created.</para>
224
225 <para>
226 To run the <command>logrotate</command> daily,
227 <phrase revision="sysv">if you've installed
228 <xref linkend="fcron"/> and completed the section on periodic jobs,
229 execute</phrase><phrase revision="systemd">execute</phrase> the following
230 commands, as the <systemitem class="username">root</systemitem> user,
231 to create a <phrase revision="sysv">daily cron job:</phrase>
232 <phrase revision="systemd">systemd timer to run daily at 3:00 A.M.
233 (local time):</phrase>
234 </para>
235
236<screen role="root" revision="sysv"><userinput>cat &gt; /etc/cron.daily/logrotate.sh &lt;&lt; "EOF" &amp;&amp;
237<literal>#!/bin/bash
238/usr/sbin/logrotate /etc/logrotate.conf</literal>
239EOF
240chmod 754 /etc/cron.daily/logrotate.sh</userinput></screen>
241
242<screen role="root" revision="systemd"><userinput>cat &gt; /lib/systemd/system/logrotate.service &lt;&lt; "EOF" &amp;&amp;
243<literal>[Unit]
244Description=Runs the logrotate command
245Documentation=logrotate(8)
246DefaultDependencies=no
247After=local-fs.target
248Before=shutdown.target
249
250[Service]
251Type=oneshot
252RemainAfterExit=yes
253ExecStart=/usr/sbin/logrotate /etc/logrotate.conf</literal>
254EOF
255cat &gt; /lib/systemd/system/logroate.timer &lt;&lt; "EOF" &amp;&amp;
256<literal>[Unit]
257Description=Runs the logrotate command daily at 3:00 AM
258
259[Timer]
260OnCalendar=*-*-* 3:00:00
261Persistent=true
262
263[Install]
264WantedBy=timers.target</literal>
265EOF
266systemctl enable logrotate.timer</userinput></screen>
267
268 </sect2>
269
270 <sect2 role="content">
271 <title>Contents</title>
272
273 <segmentedlist>
274 <segtitle>Installed Programs</segtitle>
275 <segtitle>Installed Library</segtitle>
276 <segtitle>Installed Directories</segtitle>
277
278 <seglistitem>
279 <seg> logrotate </seg>
280 <seg> None </seg>
281 <seg> None </seg>
282 </seglistitem>
283 </segmentedlist>
284
285 <variablelist>
286 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
287 <?dbfo list-presentation="list"?>
288 <?dbhtml list-presentation="table"?>
289
290 <varlistentry id="logrotate-prog">
291 <term><command>logrotate</command></term>
292 <listitem>
293 <para>
294 performs the log maintenance functions defined in the
295 configuration files.
296 </para>
297 <indexterm zone="logrotate logrotate-prog">
298 <primary sortas="b-logrotate-prog">logrotate</primary>
299 </indexterm>
300 </listitem>
301 </varlistentry>
302
303 </variablelist>
304
305 </sect2>
306
307</sect1>
Note: See TracBrowser for help on using the repository browser.