2021-05-10 记录接口调用返回 【timestamp[2021-05-10T14:08:09.914+08:00] is not valid】

原因服务器时间没有同步网络时间

Linux的时间分为System Clock(系统时间)和Real Time Clock (硬件时间,简称RTC)。

系统时间:指当前Linux Kernel中的时间。

硬件时间:主板上有电池供电的时间。

查看系统时间的命令: #date

设置系统时间的命令: #date –set(月/日/年 时:分:秒)

例:#date –set “10/11/10 10:15”

查看硬件时间的命令: # hwclock

设置硬件时间的命令: # hwclock –set –date = (月/日/年 时:分:秒)

上述提到的是手动设置时间到一个时间点,可能与当前网络的时间有误差。下面介绍一下与时间服务器上的时间同步的方法
  1. 安装ntpdate工具
yum -y install ntp ntpdate
  1. 设置系统时间与网络时间同步
ntpdate cn.pool.ntp.org

or =>   ntpdate -u ntp.api.bz
  1. 将系统时间写入硬件时间
hwclock –w

4.查看时间

date

你可能感兴趣的:(Linux,linux)