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
|
.. meta::
:description: reStructuredText plaintext markup language
***************
Troubleshooting
***************
First of all, check the logs (:ref:`log`). By default, Knot DNS logs
all error messages to syslog. Enabling at least the ``warning``
message severity may help you identify some problems.
.. _Submitting a bugreport:
Submitting a bugreport
======================
If you are unable to solve the problem by yourselves, you can submit a
bugreport to the Knot DNS team. For security issues (e.g. crash) do
not use the public mailinglist. Instead, write to
`knot-dns@labs.nic.cz <mailto:knot-dns@labs.nic.cz>`_. All other bugs
and questions may be directed to the Knot DNS users mailinglist
(`knot-dns-users@lists.nic.cz <mailto:knot-dns-users@lists.nic.cz>`_).
The bugreport should contain at least:
* Knot DNS version and type of installation (source, package, etc.),
* type and version of your operating system,
* basic hardware information,
* description of the bug,
* log output of all messages (category ``any``) with severity Info and
higher (severities ``info, notice, warning, error``, or ``any`` if
debug messages are not turned on (see below)),
* steps to reproduce the bug (if known),
* backtrace (if the bug caused a crash; see next section).
If it is possible, the actual configuration file and/or zone file(s)
will be very useful as well.
.. _Generating backtrace:
Generating backtrace
====================
There are several ways to achieve that, the most common way is to
leave core dumps and then extract a backtrace from it. This doesn't
affect any server operation, you just need to make sure the OS is
configured to generate them::
$ ulimit -c unlimited # enable unlimited core dump size
...
$ gdb $(which knotd) core.<KNOT_PID> # start gdb on a core dump
(gdb) thread apply all bt # extract backtrace from all threads
(gdb) q
If the error is repeatable, you can run the binary in a ``gdb``
debugger or attach the debugger to the running process. The backtrace
from a running process is generally useful when debugging problems
like stuck process and similar::
$ knotc -c knot.conf start
$ sudo gdb --pid <KNOT_PID>
(gdb) continue
...
(gdb) thread apply all bt
(gdb) q
.. _Debug messages:
Debug messages
==============
In some cases the aforementioned information may not be enough to find
and fix the bug. In these cases it may be useful to turn on debug
messages.
Two steps are required in order to log debug messages. First you need
to allow the debug messages in the server. Then the logging must be
configured to log debug messages (:ref:`log`). It is recommended to
log these messages to a file. Firstly, the debug output may be rather
large and secondly, it is easier to use the data for debugging.
.. _Enabling debug messages in server:
Enabling debug messages in server
---------------------------------
Allowing debug messages in the server is possible only when
configuring the sources. Two ``configure`` options are required
to do this:
* The ``--enable-debug`` option specifies the server modules for which
you want to enable debug messages. One or more of the following
modules may be listed, separated by commas:
* ``server`` - Messages related to networking, threads and low-level
journal handling.
* ``zones`` - All operations with zones - loading, updating, saving,
timers, high-level journal management.
* ``xfr`` - AXFR, IXFR and NOTIFY handling.
* ``packet`` - Packet parsing and response creation.
* ``rr`` - Details of processed resource records.
* ``ns`` - Query processing, high-level handling of all requests
(transfers, NOTIFY, normal queries).
* ``loader`` - Zone loading and semantic checks.
* ``dnssec`` - DNSSEC operations.
* The ``--enable-debuglevel`` option is used to specify the verbosity
of the debug output. Be careful with this, as the ``details``
verbosity may produce really large logs (in order of GBs). There are
three levels of verbosity: ``brief``, ``verbose`` and ``details``.
.. _Debug messages Example:
Debug messages Example
----------------------
::
$ ./configure --enable-debug=server,zones --enable-debuglevel=verbose
|