服务端配置
安装ntp服务
yum -y install ntp
修改配置文件
vim /etc/ntp.conf #添加可访问网段 restrict 10.9.103.0 mask 255.255.255.0 nomodify notrap #添加本地作为时间服务器供其他服务器同步 server 127.127.1.0 fudge 127.127.1.0 stratum 10
启动服务
systemctl start ntpd
#开机启动
systemctl enable ntpd
客户端配置
添加定时任务
crontab -e #加入 */5 * * * * /usr/bin/ntpdate -u <服务端IP>