解决 CentOS 7中同步集群时间报 no server suitable for synchronization found

一、CentOS 中同步时间时 如果要同步外部服务器的时间使用【ntpdate cn.ntpdate.org.cn】 命令就可以。
二、当服务器不能访问外网,只能使用内网,需要向A服务器同步时间时,首先需要在A服务器上使用 【service ntpd start】开启ntpd服务,然后B服务器使用【ntpdate A服务器ip】命令去同步时间时发现报no server suitable for synchronization found错误。原因是因为A服务器并没有开启123端口,此时需要在A服务器中执行

  1. firewall-cmd --permanent --zone=public --add-port=123/udp
  2. firewall-cmd --permanent --zone=public --add-port=123/tcp
  3. systemctl restart firewalld
  4. systemctl restart ntpd
    此时再在B服务器中使用【ntpdate A服务器ip】就可以同步成功时间。

你可能感兴趣的:(linux,centos,服务器,linux)