美文网首页
centos系统同步 网络时间

centos系统同步 网络时间

作者: 彩色的炮灰 | 来源:发表于2021-09-16 16:25 被阅读0次
使用阿里云oss上传文件配置文件报错如下:

可以看到提示时间不一致,此时查看centos服务器时间确实和网络时间不同步。

[root@localhost ~]# ./ossutil64 cp /opt/1.txt oss://backup-yema/test/
Total num: 1, size: 9,121. Dealed num: 0, Transfer size: 9,121. When error happens.
average speed 19000(byte/s)
Error: oss: service returned error: StatusCode=403, ErrorCode=RequestTimeTooSkewed, ErrorMessage="The difference between the request time and the current time is too large.", RequestId=6142FB42EE8B493238084E71, File=/opt/1.txt

解决方法:centos系统系统同步网络时间
在解决问题之前,我们首先来了解下面几个知识点:

  1. date命令:

date

显示系统时间
2.hwclock命令 (即hardwareclock系统硬件时间)

hwclock

显示硬件时间

hwclock -w

将系统时间写入到系统硬件当中
3.ntpdate
ntpdate 是一个linux时间同步服务软件
查看本机是否安装ntpdate服务,如果没有安装,请 yum install -y ntpdate
同步时间

  1. 输入ntpdate time.nist.gov同步网络时间

结果:16 Sep 16:14:30 ntpdate[4787]: step time server 132.163.97.6 offset -1210.548432 sec

出现上述结果代表时间同步成功

如果上面time.nist.gov服务器同步不了,可以换下面几个时间服务器试试:
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

2.同步时间成功后调整硬件时间

hwclock -w

执行成功后, 查看系统硬件时间(不出意外的话,现在date和hwclock现实的时间均为internet时间)

date

hwclock

执行上述命令,显示的时间应该一样的

相关文章

  • centos系统同步 网络时间

    使用阿里云oss上传文件配置文件报错如下: 可以看到提示时间不一致,此时查看centos服务器时间确实和网络时间不...

  • Centos 同步系统时间

    安装ntpdate 同步

  • Hadoop 集群搭建

    集群搭建 说明:基于centos 64位 1.同步时间 手动同步: 网络同步时间: 设置时区: 2.设置主机名 3...

  • CentOS 7同步系统时间

    使用ntpdate工具同步系统时间,并借助crontab定时任务来自动做日期同步的操作,以达到系统时间自动维护的目...

  • centos时间同步

    网络时间同步 查看硬件时间 系统时间写入硬件时间 硬件时间写入系统时间

  • [Linux][CentOS]同步网络时间

    1. 查看系统时间:【date】 2.查看系统硬件时间:【hwclock】, 设置:【hwclock -w】 3....

  • Centos 7 同步网络时间

    date命令:$ date :显示系统时间 hwclock命令 (即hardwareclock系统硬件时间)$ h...

  • Linux同步网络时间

    1、安装ntpdate工具 2、设置系统时间与网络时间同步 3、查看系统时间 4、将系统时间写入硬件时间 5、查看...

  • Linux 系统时间同步网络时间

    1、查看本机是否安装 ntpdate 服务,如果没有安装,请 yum install -y ntpdate 2、输...

  • centos 时间同步

    0.asia.pool.ntp.org并不是固定的,大家可以选择任意一个,只要保证可用就OK。time.nist....

网友评论

      本文标题:centos系统同步 网络时间

      本文链接:https://www.haomeiwen.com/subject/tkorgltx.html