导读 | 我们新安装的Linux主机,如果没有做与互联网服务器时间同步的处理的话,当我们使用date命令的时候,我们就看不到当前的时间,只能看到过去的时间。在我们接下来的Linux学习过程中,经常需要利用到实时时间,所以与互联网时间同步,是我们安装Linux系统后迫切需要解决的问题。今天,小凡就手把手交你,如何通过定时任务,将你的Linux主机时间和互联网时间服务器同步! |
1.了解定时任务工具crontab
a.相关命令的介绍
一般使用crontab -e来编辑一个计划动作,编辑模式同vi编辑器相同
b.基本格式的介绍
*(分)*(时)*(日)*(月)*(周) command(命令)
b.常见实例的介绍
2.常见互联网时间同步器的介绍crontab
常见ntp服务器的列表:
time.windows.com
asia.pool.ntp.org
210.72.145.44
219.158.14.130
ntp.api.bz
time.nist.gov
ntp.fudan.edu.cn
s1a.time.edu.cn
s1b.time.edu.cn
s1c.time.edu.cn
3.crontab实战演练
[root@web-lnmp01 local]# date Mon Jun 13 22:15:22 CST 2015 ###我们可以看到时间没有实时更新 [root@web-lnmp01 local]# crontab -e 或 vi /var/spool/cron/root */5 * * * * /usr/sbin/ntpdate ntp.sjtu.edu.cn 202.120.2.101 >/dev/null 2>&1 ###增加如下内容 [root@web-lnmp01 local]# crontab -l */5 * * * * /usr/sbin/ntpdate ntp.sjtu.edu.cn 202.120.2.101 >/dev/null 2>&1 ###这里我们使得屏幕不输出 [root@web-lnmp01 local]# date Mon Jun 13 22:19:48 CST 2016 ###每隔5分钟更新一次
至此,我们就完成了与互联网时间服务器同步的工作。
本文原创地址:https://www.linuxprobe.com/server-time-sync.html作者:陈凡,审核员:冯振华
本文原创地址:https://www.linuxprobe.com/server-time-sync.html编辑:public,审核员:暂无