Upgrading to version 6.x¶
The new version 6.x of Knot Resolver brings many major and minor changes. The most significant one is the introduction of a new process called knot-resolver-manager
, which represents a new way of interaction with Knot Resolver:
easier process management that hides complexities of running multiple instances of the
kresd
process (kresd@1
,kresd@2
, …)new declarative configuration in YAML that can be validated before running
HTTP API to change configuration on the fly without downtime
new kresctl utility to help with configuration validation and more
Starting with version 6, Knot Resolver uses the new systemd integration knot-resolver.service
instead of kresd@.service
. You can now control the resolver using this systemd service:
$ systemctl start knot-resolver # you can also use: stop, restart, reload or enable/disable
There is no need for managing multiple instances of kresd@.service
like before version 6. However, kresd
processes still run in the background as separate workers and are managed by the new knot-resolver-manager
process.
The number of kresd
workers can be configured directly in the new declarative configuration file. Knot Resolver’s new configuration is located in /etc/knot-resolver/config.yaml
by default.
# /etc/knot-resolver/config.yaml
workers: 4
See more in multiple workers documentation.
Note
You might be worried about the future of kresd
. No worries, you can still use kresd
directly the same way you did before, nothing changes there right now. However, in the long run, we can make major changes to the way kresd
is configured and using it directly is considered an advanced practice from now on.
Configuration¶
Knot Resolver is able to run without any additional configuration, i.e. the configuration file /etc/knot-resolver/config.yaml
may be empty. The resolver then listens on localhost
with the standard unencrypted DNS protocol port 53.
To write your own configuration, you can start with the getting started chapter for configuration.
If you need to rewrite the old Lua configuration to the new declarative one, it’s a good idea to find the option you want to convert in the internal Lua configuration, and the equivalent option will very likely be in the new declarative configuration documentation in a similar place. The documentation structure is basically the same. Otherwise, you will have to search for the option in the documentation separately.
If you have some custom Lua code in your configuration, you can use it in the lua section of the declarative configuration. However, it has some limitations and we cannot guarantee 100% functionality. For example, a configuration that uses the systemd instance name will not work.
Reconfiguration¶
To load the modified configuration, use the reload
command. All running workers will be restarted sequentially, resulting in a zero-downtime configuration reload. This was not possible before version 6, as it was necessary to manually restart all running kresd@
instances.
$ systemctl reload knot-resolver
It is also possible to use HTTP API and kresctl utility for runtime reconfiguration.
Some configuration changes (e.g. changes to the management
key) are not safe to load at runtime, and the resolver then needs to be fully restarted. You should get a relevant error message if this happens during the resolver reload process.
$ systemctl restart knot-resolver
Useful commands rosetta¶
In the table below, you can compare the way Knot Resolver was used before and how it can be used now.
Task | How to do it now | How it was done before |
---|---|---|
start resolver |
|
|
stop resolver |
|
|
start resolver with 4 worker processes | set | manually start 4 services by |
rolling restart after updating config |
| manually restart individual |
open logs of all instances |
|
|
open log of a single kresd instances |
|
|
updating config programmatically | use HTTP API or | write a custom tool to generate new config and restart |
handling errors during config changes | HTTP API just reports error, resolver keeps running with previous config | custom tools for every user |
validate new config |
| run |
look at the Lua config |
|
|
gather metrics | point Prometheus etc. at the single HTTP API | collect metrics manually from all individual processes |