我们首先需要检查自身时区对不对,执行
timedatectl status|grep 'Time zone'
这样说明时区正确,可以继续同步时间。
一、使用ntpdate同步时间
1.安装ntpdate
yum -y install ntpdate
2.同步时间
ntpdate -u pool.ntp.org
3.同步完成,查看时间是否正确
date
二、使用rdate同步时间,因为服务器禁止了所有UDP协议,所以你会发现无论如何ntpdate总是同步出错,如雅安地区。
1.安装rdate
yum -y install rdate
2.同步时间
rdate -s time.nist.gov
3.查看时间是否正确
date