校准时间
有些时候,特别是虚拟机,跑着跑着,可能就不准了。校准时间就有必要了。
使用 ntpdate
这里使用 ntpdate
来纠正数据
# centos
yum install ntpdate
# ubuntu
apt-get install ntpdate
# 开始纠正
ntpdate -u ntp.api.bz
如果发现时间和上海时间相差 8 个小时,时区问题请解决,再执行上边的命令。
vim /etc/profile
G
# 调到末尾,加入下边的命令
export TZ='CST-8'
# 使得环境变量生效,再执行上边的命令纠正时区
source /etc/profile
如果经常纠正可以加入定时任务
参考
https://www.cnblogs.com/luchuangao/p/7795293.html
https://blog.csdn.net/wblinux/article/details/81981328