How to change timezone in CentOS 7 or RHEL 7
Contents
check the current timezone status
1 2 3 4 5 6 7 8 9 |
[root@rhel7 ~]# timedatectl Local time: Thu 2017-08-10 05:19:53 UTC Universal time: Thu 2017-08-10 05:19:53 UTC RTC time: Thu 2017-08-10 05:19:52 Time zone: UTC (UTC, +0000) NTP enabled: yes NTP synchronized: yes RTC in local TZ: no DST active: n/a |
list the avaliable timezones
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
[root@rhel7 ~]# timedatectl list-timezones Asia/Aden Asia/Almaty Asia/Amman Asia/Anadyr Asia/Aqtau Asia/Aqtobe Asia/Ashgabat ... ... ... Pacific/Rarotonga Pacific/Saipan Pacific/Tahiti Pacific/Tarawa Pacific/Tongatapu Pacific/Wake Pacific/Wallis |
find and set your timezone
You can grep for your area.
1 2 |
[root@rhel7 ~]# timedatectl list-timezones | grep Tokyo Asia/Tokyo |
Now set to your timezone and check
1 2 3 4 5 6 7 8 9 10 11 12 |
[root@rhel7 ~]# timedatectl set-timezone Asia/Tokyo [root@rhel7 ~]# timedatectl Local time: Thu 2017-08-10 14:22:37 JST Universal time: Thu 2017-08-10 05:22:37 UTC RTC time: Thu 2017-08-10 05:22:37 Time zone: Asia/Tokyo (JST, +0900) NTP enabled: yes NTP synchronized: yes RTC in local TZ: no DST active: n/a [root@rhel7 ~]# date Thu Aug 10 14:23:35 JST 2017 |
Author Wenhan Shi
LastMod 2020-03-26 (02c19e3)