ntpd 服务可以实现服务器的时间同步,他的配置文件中会制定上级服务器是那个从而实现同步
ntpdate server_ip 可以实现和服务器同步
由于ntpd和上级服务器同步的时候要求和上级服务器的时间必须相差不是很大。同时ntpdate的同步又没有ntpd好
因此可以使用ntpdate 先实现同步,然后在使用ntpd 配置文件进行修改上级服务器来实现更好的同步
1.修改/etc/ntp.conf,复制
-
driftfile /var/lib/ntp/drift
-
restrict 127.0.0.1
-
restrict -6 ::1
-
restrict default nomodify
-
server 127.127.1.0
-
fudge 127.127.1.0 stratum 8
-
includefile /etc/ntp/crypto/pw
-
-
keys /etc/ntp/keys
以上配置中上级同步服务器设置的是自己
2.使用命令 watch --interval=0.01 "ntpq -p" 可以看到如下的结果
主要是那个 reach 等达到 17 的时候 就可以让 client连接了
3. client 首先使用 ntpdate server_ip 这样首先实现了第一次两者的同步
4.client修改 /etc/ntp.conf 和那个server ntp.conf 是一样的 这是需要修改那个 server 127.127.1.0 为 server server_ip
5.重启ntpd 服务 service ntpd restart 这样就可以实现服务器的同步了
阅读(1572) | 评论(0) | 转发(0) |