Linux配置时间同步

2022-11-22 21:37:20 浏览数 (1)

前景

排查售后问题发现一个奇葩BUG是因为Linux服务器时间不同步导致

1.安装ntpdate
代码语言:shell复制
yum install -y ntpdate
2.同步时间
代码语言:shell复制
ntpdate 0.asia.pool.ntp.org   #0.asia.pool.ntp.org 为ntp时间服务器name
3.同步系统时间到硬件
代码语言:shell复制
hwclock --systohc
4.设置定时任务
代码语言:shell复制
crontab -e 


#输入以下定时任务
0 */2 * * * /usr/sbin/ntpdate  0.asia.pool.ntp.org    #每2小时执行一次
5.备用的时间服务器
代码语言:shell复制
cn.pool.ntp.org

ntp.sjtu.edu.cn

time.nist.gov

time.nuri.net

0.asia.pool.ntp.org

1.asia.pool.ntp.org

2.asia.pool.ntp.org

3.asia.pool.ntp.org

0 人点赞