CentOS下怎么快速修改时区
更新:HHH   时间:2023-1-7


这篇文章主要介绍“CentOS下怎么快速修改时区”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“CentOS下怎么快速修改时区”文章能帮助大家解决问题。

方法1: timedatectl set-timezone Asia/Shanghai

# timedatectlWarning: Ignoring the TZ variable. Reading the system's time zone setting only.

Local time: Mon 2016-11-21 01:52:42 EST
Universal time: Mon 2016-11-21 06:52:42 UTC
RTC time: Mon 2016-11-21 06:52:42
Time zone: America/New_York (EST, -0500)
NTP enabled: n/a
NTP synchronized: no
RTC in local TZ: no
DST active: no
Last DST change: DST ended at
Sun 2016-11-06 01:59:59 EDT
Sun 2016-11-06 01:00:00 EST
Next DST change: DST begins (the clock jumps one hour forward) at
Sun 2017-03-12 01:59:59 EST
Sun 2017-03-12 03:00:00 EDT

设置时区为CST(东8区)

# timedatectl  set-timezone Asia/ShanghaiWarning: Ignoring the TZ variable. Reading the system's time zone setting only.

Local time: Mon 2016-11-21 14:52:59 CST
Universal time: Mon 2016-11-21 06:52:59 UTC
RTC time: Mon 2016-11-21 06:52:59
Time zone: Asia/Shanghai (CST, +0800)
NTP enabled: n/a
NTP synchronized: no
RTC in local TZ: no
DST active: n/a
[root@localhost ~]#

方法2:TZ环境变量的方式

修改用户目录下的.bash_profile,在文件末尾追加:

TZ='Asia/Shanghai'; export TZ

推出登录后,重新登录,date命令可以查看效果。

关于“CentOS下怎么快速修改时区”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注天达云行业资讯频道,小编每天都会为大家更新不同的知识点。

返回开发技术教程...