chiark / gitweb /
build-sys: add missing HAVE_GNUEFI condition
[elogind.git] / man / coredump.conf.xml
1 <?xml version='1.0'?> <!--*- Mode: nxml; nxml-child-indent: 2; indent-tabs-mode: nil -*-->
2 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3         "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4
5 <!--
6   This file is part of systemd.
7
8   Copyright 2014 Zbigniew JÄ™drzejewski-Szmek
9
10   systemd is free software; you can redistribute it and/or modify it
11   under the terms of the GNU Lesser General Public License as published by
12   the Free Software Foundation; either version 2.1 of the License, or
13   (at your option) any later version.
14
15   systemd is distributed in the hope that it will be useful, but
16   WITHOUT ANY WARRANTY; without even the implied warranty of
17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18   Lesser General Public License for more details.
19
20   You should have received a copy of the GNU Lesser General Public License
21   along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 -->
23
24 <refentry id="coredump.conf" conditional="ENABLE_COREDUMP"
25           xmlns:xi="http://www.w3.org/2001/XInclude">
26   <refentryinfo>
27     <title>coredump.conf</title>
28     <productname>systemd</productname>
29
30     <authorgroup>
31       <author>
32         <contrib>Developer</contrib>
33         <firstname>Lennart</firstname>
34         <surname>Poettering</surname>
35         <email>lennart@poettering.net</email>
36       </author>
37     </authorgroup>
38   </refentryinfo>
39
40   <refmeta>
41     <refentrytitle>coredump.conf</refentrytitle>
42     <manvolnum>5</manvolnum>
43   </refmeta>
44
45   <refnamediv>
46     <refname>coredump.conf</refname>
47     <refname>coredump.conf.d</refname>
48     <refpurpose>Coredump storage configuration files</refpurpose>
49   </refnamediv>
50
51   <refsynopsisdiv>
52     <para><filename>/etc/systemd/coredump.conf</filename></para>
53     <para><filename>/etc/systemd/coredump.conf.d/*.conf</filename></para>
54     <para><filename>/run/systemd/coredump.conf.d/*.conf</filename></para>
55     <para><filename>/usr/lib/systemd/coredump.conf.d/*.conf</filename></para>
56   </refsynopsisdiv>
57
58   <refsect1>
59     <title>Description</title>
60
61     <para>These files configure the behaviour of
62     <citerefentry><refentrytitle>systemd-coredump</refentrytitle><manvolnum>8</manvolnum></citerefentry>,
63     a handler for core dumps invoked by the kernel.</para>
64   </refsect1>
65
66   <xi:include href="standard-conf.xml" xpointer="confd" />
67   <xi:include href="standard-conf.xml" xpointer="conf" />
68
69   <refsect1>
70     <title>Options</title>
71
72     <para>All options are configured in the
73     <literal>[Coredump]</literal> section:</para>
74
75     <variablelist>
76
77       <varlistentry>
78         <term><varname>Storage=</varname></term>
79
80         <listitem><para>Controls where to store cores. One of
81         <literal>none</literal>, <literal>external</literal>,
82         <literal>journal</literal>, and <literal>both</literal>. When
83         <literal>none</literal>, the coredumps will be logged but not
84         stored permanently. When <literal>external</literal> (the
85         default), cores will be stored in <filename>/var/lib/systemd/coredump</filename>.
86         When <literal>journal</literal>, cores will be stored in
87         the journal and rotated following normal journal
88         rotation patterns. When <literal>both</literal>, cores
89         will be stored in both locations.</para>
90
91         <para>When cores are stored in the journal, they might be
92         compressed following journal compression settings, see
93         <citerefentry><refentrytitle>journald.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
94         When cores are stored externally, they will be compressed
95         by default, see below.</para></listitem>
96       </varlistentry>
97
98       <varlistentry>
99         <term><varname>Compress=</varname></term>
100
101         <listitem><para>Controls compression for external
102         storage. Takes a boolean argument, defaults to
103         <literal>yes</literal>.</para>
104         </listitem>
105       </varlistentry>
106
107       <varlistentry>
108         <term><varname>ProcessSizeMax=</varname></term>
109
110         <listitem><para>The maximum size in bytes of a core
111         which will be processed. Coredumps exceeding this size
112         will be logged, but the backtrace will not be generated
113         and the core will not be stored.</para></listitem>
114       </varlistentry>
115
116       <varlistentry>
117         <term><varname>ExternalSizeMax=</varname></term>
118         <term><varname>JournalSizeMax=</varname></term>
119
120         <listitem><para>The maximum (uncompressed) size in bytes of a
121         core to be saved.</para></listitem>
122       </varlistentry>
123
124       <varlistentry>
125         <term><varname>MaxUse=</varname></term>
126         <term><varname>KeepFree=</varname></term>
127
128         <listitem><para>Enforce limits on the disk space taken up by
129         externally stored coredumps. <option>MaxUse=</option> makes
130         sure that old coredumps are removed as soon as the total disk
131         space taken up by coredumps grows beyond this limit (defaults
132         to 10% of the total disk size). <option>KeepFree=</option>
133         controls how much disk space to keep free at least (defaults
134         to 15% of the total disk size). Note that the disk space used
135         by coredumps might temporarily exceed these limits while
136         coredumps are processed. Note that old coredumps are also
137         removed based on time via
138         <citerefentry><refentrytitle>systemd-tmpfiles</refentrytitle><manvolnum>8</manvolnum></citerefentry>.</para></listitem>
139       </varlistentry>
140     </variablelist>
141
142   </refsect1>
143
144   <refsect1>
145     <title>See Also</title>
146     <para>
147       <citerefentry><refentrytitle>systemd-journald.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>,
148       <citerefentry><refentrytitle>coredumpctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
149       <citerefentry><refentrytitle>systemd-tmpfiles</refentrytitle><manvolnum>8</manvolnum></citerefentry>
150     </para>
151   </refsect1>
152
153 </refentry>