JWT must not be accepted before 2024-01-02T06:47:19Z. Current time: 2024-01-02T06:47:17Z, a difference of 1180 milliseconds. Allowed clock skew: 0 milliseconds.",
5.调整好两台机器的时间即可解决
二、解决方法
// 安装ntpdate
sudo yum install -y ntpdate
// 同步网络时间
sudo ntpdate pool.ntp.org
// 如果服务已经在运行(提示the NTP socket is in use, exiting),可以用下面命令停止
sudo service ntpd stop
// 同步成功后提示step time server 139.199.214.202 offset 3.651036 sec
// 写入到机器硬件,以免重启失效
sudo hwclock -w
Linux pwd命令介绍
pwd命令(全称:print working directory)是一个非常简单的Linux命令,它的功能就是打印当前工作目录。当你在Linux终端中感到迷失时,pwd命令可以帮助你重新定位,显示你所在的目录。
Linu…