Linux 7 修改時區不生效

chenoracle發表於2020-06-27

檢視當前時區

[root@tidb01 ~]# date
Sat Jun 27 13:58:27 EDT 2020
[root@tidb01 ~]# date -R
Sat, 27 Jun 2020 13:58:36 -0400

修改時區

方法一:

[root@tidb01 ~]# ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
[root@tidb01 ~]# ls -l /etc/localtime
lrwxrwxrwx 1 root root 35 Jun 28 02:08 /etc/localtime -> ../usr/share/zoneinfo/Asia/Shanghai

方法二:

[root@tidb01 ~]# timedatectl set-timezone Asia/Shanghai

方法三:

[root@tidb01 ~]# cat /etc/profile
[root@tidb01 ~]# cat .bash_profile 
[root@tidb01 ~]# cat .bash_profile 
TZ='Asia/Shanghai'; export TZ

方法四:

[root@tidb01 ~]# tzselect 
Please identify a location so that time zone rules can be set correctly.
Please select a continent or ocean.
 1) Africa
 2) Americas
 3) Antarctica
 4) Arctic Ocean
 5) Asia
 6) Atlantic Ocean
 7) Australia
 8) Europe
 9) Indian Ocean
10) Pacific Ocean
11) none - I want to specify the time zone using the Posix TZ format.
......

查詢時區並沒有修改成功

[root@tidb01 ~]# date
Sat Jun 27 13:58:50 EDT 2020

嘗試將其他東8區時區作業系統上的Shanghai檔案拷貝過來

[root@tidb02 ~]# cp /usr/share/zoneinfo/Asia/Shanghai .
[root@tidb02 ~]# scp Shanghai 192.168.30.101:/root

時區修改成功

[root@tidb01 ~]# date
Sat Jun 27 14:23:04 CST 2020
[root@tidb01 ~]# date -R
Sat, 27 Jun 2020 14:23:13 +0800

歡迎關注我的微信公眾號"IT小Chen",共同學習,共同成長!!

Linux 7 修改時區不生效

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29785807/viewspace-2700727/,如需轉載,請註明出處,否則將追究法律責任。

相關文章