Centos7同步时间

本文最后更新于:3 天前

使用ntpdate同步时间

目前比较常用的做法就是使用ntpdate命令来同步时间,使用方法如下:
另外再分享下几个常用的ntp server,如果需要更多可以前往:http://www.ntp.org.cn获取

1
2
3
4
5
6
#安装ntpdate
yum -y install ntpdate
#同步时间
ntpdate -u pool.ntp.org
#同步完成后,date命令查看时间是否正确
date

使用rdate同步时间

1
2
3
4
5
6
#安装rdate
yum -y install rdate
#同步时间
rdate -s time-b.nist.gov
#同步完成后,date命令查看时间是否正确
date

定时任务

1
2
3
4
5
6
7
8
9
#创建crontab任务
crontab -e

#添加定时任务
*/20 * * * * /usr/sbin/ntpdate pool.ntp.org > /dev/null 2>&1
*/20 * * * * /usr/sbin/rdate -s time-b.nist.gov > /dev/null 2>&1

#重启crontab
service crond reload