PHP笔记网

革命尚未成功,同志仍须努力下载JDK17

作者:Albert.Wen  添加时间:2022-07-12 15:27:21  修改时间:2024-11-20 20:29:03  分类:Linux基础  编辑

一、修改中国时区

mv /etc/localtime /etc/localtime.bak
ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

二、同步网络时间

ntpdate从时间服务器更新时间

如果系统没有 ntpdate 命令,可在线安装:

yum -y install ntp

安装完了之后,你不要做什么配置,也不需要,直接测试一下

[root@snsgou-pc src]# date
2015年 05月 20日 星期三 22:42:19 CST
[root@snsgou-pc src]# ntpdate time.nist.gov  
20 May 22:42:38 ntpdate[26759]: step time server 131.107.13.100 offset 2.117558 sec
[root@snsgou-pc src]# date
2015年 05月 20日 星期三 22:43:17 CST

上面的情况表示跟网络时间同步成功。

我们可以用定时任务来定期同步时间

用 crontab -e 命令进入crontab编辑状态,追加如下定时任务文本

*/10 * * * * ntpdate time.nist.gov   #域名或IP

表示 每隔十分钟同步一次。推荐几个时间服务器:

  • cn.pool.ntp.org
  • 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

 

 

参考:

CentOS 同步网络时间

修改 Linux 系统 时区