有三台服务器作为集群,地址分别为:192.168.1.33(以下简称33),192.168.1.35(以下35),192.168.1.37(以下37)。都没有网络,
这里以33作为ntp服务器,其他两台作为客户端同步33的时间。
1、33服务器下载ntp软件
yum install -y ntp
2、编辑/etc/ntp.conf
修改
restrict 192.168.1.255(这里为网关地址) mask 255.255.255.0(子网掩码地址) modify notrap
添加
server 127.127.1.0
fudge 127.127.1.0 stratum 10
注释

server 0.centos.pool.ntp.org.iburst

server 1.centos.pool.ntp.org.iburst

server 2.centos.pool.ntp.org.iburst

server 3.centos.pool.ntp.org.iburst

3、启动ntp服务、设置开机自启ntp
systemctl start ntpd.service
systemctl enable ntpd.service
以上步骤是设置服务器,以下开始设置客户端
客户端下载ntp软件
yum install -y ntp
设置/etc/ntp.conf
修改
restrict 192.168.1.33 nomodify notrap nopeer noquery
添加
server 192.168.1.33
之后,在客户端执行命令ntpdate 192.168.1.33即可同步时间
利用crontab执行定时任务,比如每10分钟同步一次服务器时间
/10 * /usr/sbin/ntpdate 192.168.1.33


hoodzwh
0 声望1 粉丝

引用和评论

0 条评论