1. yum install -y ntp
2. /usr/sbin/ntpdate -u 10.199.XXX.XXX && /sbin/clock --systohc
如果在ntpdate同步时间的时候出现“the NTP socket is in use, exiting”错误,需要执行/etc/init.d/ntpd stop
3. 加入定时任务
crontab -e 写入 30 5 * * * root /usr/sbin/ntpdate -u 10.199.XXX.XXX && /sbin/clock --systohc
#每天5点半同步时间,clock --systohc是硬盘时间同步系统时间的意思。
网友评论