不管你有多少个节点,肯定要有一个 server 角色,至于谁是 server 你来决定。 例如下面这样,我们姑且假设有这样四个节点
192.168.11.101(server端)
192.168.11.102(client端)
192.168.11.103(client端)
192.168.11.104(client端)
192.168.11.xxx(client端)
...
yum install ntp ntpdate
vim /etc/ntp.conf
...(省略)
server 192.168.11.101(server节点的IP地址)
fudge 127.127.1.0 stratum 11
systemctl start ntpd
systemctl enable ntpd.service #设置开机启动服务
在所有 Client 节点上完成以下操作
yum install ntp ntpdate
ntpdate -d -b 192.168.11.101
...(省略)
server 192.168.11.101(server节点的IP地址)
fudge 127.127.1.0 stratum 11
systemctl start ntpdate
systemctl enable ntpdate.service #设置开机启动服务
所有节点执行 date
命令看时间是否一致即可。