矫正linux服务器的时间需要用到的软件ntpdate
安装ntpdate
[root@Rain ~]# yum install -y ntpdate
矫正时间(建议多执行几次)
[root@localhost ~]# ntpdate ntp1.aliyun.com
12 Mar 10:03:39 ntpdate[24195]: step time server 120.25.115.20 offset -28791.687583 sec
[root@localhost ~]# ntpdate ntp1.aliyun.com
12 Mar 10:03:47 ntpdate[24200]: adjust time server 120.25.115.20 offset 0.000607 sec
[root@localhost ~]# ntpdate ntp1.aliyun.com
12 Mar 10:03:56 ntpdate[24206]: adjust time server 120.25.115.20 offset -0.001000 sec
[root@localhost ~]# ntpdate ntp1.aliyun.com
12 Mar 10:04:05 ntpdate[24212]: adjust time server 120.25.115.20 offset 0.001071 sec
修改时区
[root@localhost ~]# timedatectl set-timezone Asia/Shanghai # 设置系统时区为上海
写定时任务每天自动矫正时间
[root@localhost ~]# crontab -e
*/5 * * * * /usr/sbin/ntpdata ntp1.aliyun.com