一个NTP服务器故障

作者: 777930641f9e | 来源:发表于2020-03-28 09:24 被阅读0次

安装了一个NTP服务器,但是发现esxi两台主机使用不能和这台服务器同步

服务器端

[root@ntp ~]# ntpq -p

remote refid st t when poll reach delay offset jitter

==============================================================================

*115.28.122.198 10.137.38.86 2 u - 64 3 16.780 285.333 285.117

+120.25.108.11 10.137.38.86 2 u 3 64 3 31.728 273.796 272.001

[root@ntp ~]# ntpstat

unsynchronised

polling server every 64 s

客户端

[root@ESXi20:~] ntpq -p

remote refid st t when poll reach delay offset jitter

==============================================================================

ntp.mf.com 115.28.122.198 3 u 10 64 0 0.000 0.000 0.000

注意这里的reach,0代表没成功

解决的方法:

服务器上停止ntpd服务

然后用ntpdate同步服务器时钟

重启ntpd服务

[root@ntp ~]# service ntpd stop

关闭 ntpd: [确定]

[root@ntp ~]# ntpdate 115.28.122.198

19 Jan 13:25:05 ntpdate[1656]: step time server 115.28.122.198 offset 1.293944 sec

[root@ntp ~]# ntpdate 115.28.122.198

19 Jan 13:25:12 ntpdate[1657]: adjust time server 115.28.122.198 offset 0.004141 sec

[root@ntp ~]# service ntpd start

正在启动 ntpd: [确定]

[root@ntp ~]# ntpstat

synchronised to NTP server (115.28.122.198) at stratum 3

time correct to within 7965 ms

polling server every 64 s

再看客户端

[root@ESXi20:~] ntpq -p

remote refid st t when poll reach delay offset jitter

==============================================================================

ntp.mf.com 115.28.122.198 3 u 101 128 1 0.245 120186. 0.000

相关文章

  • 一个NTP服务器故障

    安装了一个NTP服务器,但是发现esxi两台主机使用不能和这台服务器同步 服务器端 [root@ntp ~]# n...

  • ntp时间同步配置

    安装 ntp 修改ntp配置文件 vi /etc/ntp.conf 添加内网ntp服务器。 systemctl s...

  • 如何安装和配置 Chrony 作为 NTP 客户端?

    NTP 服务器和 NTP 客户端可以让我们通过网络来同步时钟。之前,我们已经撰写了一篇关于NTP 服务器和 NTP...

  • (8)Linux_服务篇_NTP_DHCP

    NTP 描述:中心时间服务器,用于局域网服务器时间同步 安装软件:ntp 1. 配置路径:vim /etc/ntp...

  • 使用dokcer镜像快速搭建ntp服务器实现时间同步

    使用镜像搭建ntp服务器,并在客户端调用进行定时时间同步。 一、 ntp服务器搭建 查询到有现成的ntp服务器do...

  • 2018-04-16

    Linux对时 在NTP服务器上,即一般都是用于对时的前置服务器,修改/etc/ntp/ntp.conf,在该文件...

  • 时间服务器NTP

    默认的NTP服务器端口是123如果利用trimble NetR9开启NTP服务器,首先需要开启NTP服务,然后在端...

  • NTP服务器

    ntp server 启动/重启/关闭/查询状态ntp server 添加主机同步服务器 在/etc/ntp.co...

  • linux时间同步ntp服务的安装与配置

    安装NTP(server client) Server机器修改NTP配置文件,添加NTP服务器的网络位置 vi ...

  • 第十三周

    1、搭建时间服务器,日志服务器并简述sudo安全切换 1)安装ntp服务器 yum install ntp 配置文...

网友评论

    本文标题:一个NTP服务器故障

    本文链接:https://www.haomeiwen.com/subject/zvpzehtx.html