BIND: Difference between revisions

From lurkmore wiki
Jump to navigationJump to search
No edit summary
 
m (1 revision imported)
 
(No difference)

Latest revision as of 00:15, 1 April 2022

BIND, named, or bind9 is a DNS server.

managed-keys-zone ./IN: loading from master file managed-keys.bind failed: file not found

Change permissions on all files in /etc/bind to bind:bind. This step may resolve the problem right away.

Create /etc/bind/managed-keys.bind: touch /etc/bind/managed-keys.bind

Modify /etc/bind/named.conf:

include "/etc/bind/named.conf.options";
include "/etc/bind/named.conf.local";
include "/etc/bind/named.conf.default-zones";
include "/etc/bind/bind.keys";

The last entry should have been missing. After adding it, the problem should be resolved.

Related articles