ECS
https://developer.aliyun.com/article/359597
推荐 https://developer.aliyun.com/article/34598
使用tzselect更改
第一步,tzselect根据提示选择时区
[root@db-server ~]# tzselect
[root@iZa2dcq5mkcz3k46jec1mzZ ~]# cat .bash_profile
Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
第二步,更改path,不然退出shell会失效
User specific environment and startup programs
[root@iZa2dcq5mkcz3k46jec1mzZ ~]# vim .bash_profile
PATH=$PATH:$HOME/bin
export PATH
TZ='Asia/Kolkata'; export TZ
使用timedatectl方式更改时区
ecs和rds使用的时间都是UTC时间
timedatectl set-timezone UTC
rds mysql
https://help.aliyun.com/knowledge_detail/41689.html
其他参考
系统时间
date 查看本地时间
date -u 查看utc时间
date -R 查看时区
date --set “07/07/06 10:19" (月/日/年时:分:秒)
硬件时间
hwclock/clock
hwclock --show
clock --show
hwclock --set --date=“mm/dd/yy 10:19” (月/日/年 时:分:秒)
clock --set --date=“07/07/06 10:19” (月/日/年 时:分:秒)
硬件时间和系统时间的同步
手动同步
硬件时钟与系统时钟同步:hwclock --hctosys(hc代表硬件时间,sys代表系统时间)
系统时钟和硬件时钟同步:hwclock --systohc
系统启动与关闭自动同步
开启utc(/etc/sysconfig/clock 中 UTC=true)
开机:BIOS ▶ UTC时区转换 ▶ 系统时间
关机:系统时间 ▶ UTC时区转换 ▶ BIOS
关闭utc
开机:BIOS ▶ 系统时间
关机:系统时间 ▶ BIOS