BIND clocks are unsynchronized

时间:2019-11-20 08:53:22  来源:igfitidea点击:

在/var/log/messages中,BIND报错:

zone example.org/IN: refresh: failure trying master 10.9.11.22#53 (source 19.9.11.22#0): clocks are unsynchronized: 9 Time(s)

BIND需要准确的时间。
系统最好使用ntp进行时间同步。

在Linux/UNIX下,您可以使用ntpd或openntpd软件实现来同步时钟。

要在Debian下安装ntpd,请输入:

# apt-get update
# apt-get install ntp

安装ntp后。

在/etc/ntp.conf中配置ntp服务器

server 0.debian.pool.ntp.org iburst
server 1.debian.pool.ntp.org iburst
server 2.debian.pool.ntp.org iburst
server 3.debian.pool.ntp.org iburst

时间没问题后,执行bind看是否已经正常。

# bind reload