===2021-09-18 15:55:14.445 ERROR [http-nio-8014-exec-6] com.croot.common.utils.JwtTokenKit Line:72 - JWT Check Failure:
io.jsonwebtoken.PrematureJwtException: JWT must not be accepted before 2021-09-18T15:55:42Z.
Current time: 2021-09-18T15:55:14Z, a difference of 27556 milliseconds. Allowed clock skew: 0 milliseconds.
同步服务器时间
写一个脚本:
为该脚本添加所有用户可执行的权限,方便后面的测试:chmod a+x test.sh
停止crond服务:service crond stop
添加定时任务:
[root@CloudDeskTop install]# crontab -e
* * * * * /bin/sh /install/test.sh
查看定时任务:
[root@CloudDeskTop install]# crontab -l
* * * * * /bin/sh /install/test.sh
查看有哪些用户拥有定时任务:
[root@CloudDeskTop ~]# ls /var/spool/cron
root
开启crond服务:service crond start
查看/install/目录下是否有test.log文件;
实时显示test.log中的内容:tail -f test.log