向MinIO上传文件时,抛出异常:The difference between the request time and the server's time is too large.
使用date命令修改CentOS时间后,异常依然存在。

相关Linux命令

查看系统时间:date
查看硬件时间:hwclock

原因

只修改了系统时间,硬件时间未修改。

解决方法

方法1

1. 手动修改系统时间

date -s 20210127
date -s 16:01:32
date -s "20210127 16:01:32"

2. 将系统时间写入硬件时间

hwclock --systohc

方法2

1. 安装ntp ntpdate

yum -y install ntp ntpdate

2. 与时间服务器同步时间

ntpdate cn.pool.ntp.org

3. 将系统时间写入硬件时间

hwclock --systohc

相关文章:

  • 2022-12-23
  • 2022-01-04
  • 2020-03-19
  • 2021-09-17
  • 2022-02-26
  • 2021-07-22
  • 2021-08-28
  • 2021-12-12
猜你喜欢
  • 2022-12-23
  • 2022-01-15
  • 2021-07-03
  • 2021-10-14
  • 2021-06-22
  • 2022-02-01
  • 2021-12-31
相关资源
相似解决方案