Centos7时区UTC修改成CST

avatar 2023年2月26日18:17:22 评论 507 次浏览

系统时间不对就会对日志的收集造成没有必要的问题,也不利于异常问题的处理,这次就遇到了一次系统安装的时候没有选择时区,所以就记录一下,默认时区市UTC,和北京时间相差8个小时,这个看着有点别扭,先看一下我的时间和时区。

 [root@wulaoer.org ~]# timedatectl
       Local time: Fri 2023-02-24 01:36:13 UTC
   Universal time: Fri 2023-02-24 01:36:13 UTC
         RTC time: Fri 2023-02-24 01:36:13
        Time zone: UTC (UTC, +0000)
      NTP enabled: yes
 NTP synchronized: yes
  RTC in local TZ: no
       DST active: n/a

需要把原来的时间删除,从新修改时区,这里注意,在删除前备份一下,万一删除没有找不回来就麻烦了。我这里是测试环境就不备份了。

 [root@wulaoer.org ~]# rm -rf /etc/localtime
 [root@wulaoer.org ~]# ln -s /usr/share/zoneinfo/Asia/Shanghai  /etc/localtime
 [root@wulaoer.org ~]# timedatectl
       Local time: Fri 2023-02-24 09:40:13 CST
   Universal time: Fri 2023-02-24 01:40:13 UTC
         RTC time: Fri 2023-02-24 01:40:13
        Time zone: Asia/Shanghai (CST, +0800)
      NTP enabled: yes
 NTP synchronized: yes
  RTC in local TZ: no
       DST active: n/a
 [root@wulaoer.org ~]# date
 Fri Feb 24 09:44:28 CST 2023

时间已经改过来了,很简单吧,一般这个不会在实际工作中遇到,因为工作中安装系统都是拿指定的做备份,根据备份进行还原操作。

avatar

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: