有台服务器创建的时候选择了纽约的时区,需要改成上海,记录下修改的方法。注意如果是修改数据库服务器的时区必须慎重,修改后DB中表和日志的时间可能会改变,对业务造成影响,最好先备份在测试环境验证。
查看当前时区方法
[root@linux01 ~]# date
Wed Oct 16 05:47:37 EDT 2019
[root@linux01 ~]# date -R
Wed, 16 Oct 2019 05:50:12 -0400
[root@linux01 ~]# ll /etc/localtime
lrwxrwxrwx. 1 root root 38 Dec 20 2018 /etc/localtime -> ../usr/share/zoneinfo/America/New_York
修改方法
法一:
mv /etc/localtime /etc/localtime.bak #备份/etc/localtime
ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime #链接到新时区文件即可
法二:
Oracle官方文档写适用于OEL 7.3及之后,未测试其他版本
timedatectl list-timezones #找到目标时区名
timedatectl set-timezone Asia/Shanghai #修改为目标时区即可
参考
How to Change Timezone from CST To EST in Orace Linux 7 server (Doc ID 2250865.1)
How to change TimeZone configuration on Oracle Linux 5-6 (Doc ID 1573558.1)
How To Change Timezone for Grid Infrastructure (Doc ID 1209444.1)
https://blog.csdn.net/cushier/article/details/82716538