centos 自动更新时间

2024-05-16 21:59:52 浏览数 (1)

自动更新时间, 我这里使用的是 ntpdate.

从 ntpdate 手册上看, 手册上更建议使用 ntpd, 以后再学习它

安装 ntpdate

代码语言:shell复制
yum install ntpdate

时间服务器

名称

地址

???

cn.ntp.org.cn

阿里云提供的地址

ntp2.aliyun.com

配置 crontab

通过 crontab -e 开始配置, 增加以下内容:

代码语言:shell复制
0-59/10 * * * * /usr/sbin/ntpdate cn.ntp.org.cn

配置完了以后, 可以使用 crontab -l 查看.

注意, 这个 /usr/sbin/ntpdate 表示 ntpdate 的安装路径, 可以使用 whereis ntpdate 查看你自己的安装路径. 0-59/10 * * * * 表示每隔10分钟, 校正一下时间.

具体语法可以这么查询:

第一步, man -k crontab; 查看所有 crontab 所有相关的手册. centos7.9 有如下输出:

手册

描述

anacrontab (5)

configuration file for Anacron

crontab (1)

maintains crontab files for individual users

crontab (5)

files used to schedule the execution of programs

crontabs (4)

configuration and scripts for running periodical jobs

第二步, 根据描述, 应该是手册 5, 所以: man 5 crontab 以查看具体语法.

0 人点赞