概述
服务器修改时区
1.修改服务器时区为UTC
timedatectl set-timezone UTC
2.因为UTC时间与正常时间相差8个小时,修改时间
date -s ‘2018-12-14 10:50:00’
3.查看docker 容器,查看MySQL的Id
docker ps
4.进入mysql容器内部,把本地时区映射到容器里面
docker exec -it xxxxxxx(容器Id/容器名称) bash
ln -sf /usr/share/zoneinfo/UTC /etc/localtime
--退出容器
exit
5.打开mysql,查询mysql时区
show variables like "%time_zone%";
6.将mysql的全局时区修改为东8区,即北京时间
set global time_zone='+8:00';
--关闭可视化页面,重新打开
7.项目mysql配置serverTimezone改成UTC
jdbc:mysql://localhost:3306/helloworld?
autoReconnect=true&useUnicode=true&characterEncoding=UTF8&zeroDateTimeBehavior=convertToNull&useSSL=false&useTimezone=true&serverTimezon
e=UTC
8.yml配置增加
spring:
jackson:
time-zone: GMT+8
最后
以上就是酷炫黄豆为你收集整理的服务器修改时区的全部内容,希望文章能够帮你解决服务器修改时区所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复