当前位置:   article > 正文

CentOS 7 中时间快了 8 小时

CentOS 7 中时间快了 8 小时

1.查看系统时间

1.1 timeZone显示时区 

  1. [admin@localhost ~]$ timedatectl
  2. Local time: Mon 2024-04-15 18:09:19 PDT
  3. Universal time: Tue 2024-04-16 01:09:19 UTC
  4. RTC time: Tue 2024-04-16 01:09:19
  5. Time zone: America/Los_Angeles (PDT, -0700)
  6. NTP enabled: yes
  7. NTP synchronized: yes
  8. RTC in local TZ: no
  9. DST active: yes
  10. Last DST change: DST began at
  11. Sun 2024-03-10 01:59:59 PST
  12. Sun 2024-03-10 03:00:00 PDT
  13. Next DST change: DST ends (the clock jumps one hour backwards) at
  14. Sun 2024-11-03 01:59:59 PDT
  15. Sun 2024-11-03 01:00:00 PST

1.2 修改时区为上海

sudo timedatectl set-timezone 'Asia/Shanghai'

2.使用NTP进行时间同步

2.1 安装 NTP 服务器包

yum install -y ntp

2.2 从 NTP 公共池时间服务器选择所需的物理服务器

NTP Servers in China, cn.pool.ntp.org

  1. server 0.cn.pool.ntp.org
  2. server 1.cn.pool.ntp.org
  3. server 2.cn.pool.ntp.org
  4. server 3.cn.pool.ntp.org

2.3 编辑 NTP 配置文件

  1. vi /etc/ntp.conf
  2. #在服务器时间池加上中国的
  3. # Use public servers from the pool.ntp.org project.
  4. # Please consider joining the pool (http://www.pool.ntp.org/join.html).
  5. server 0.centos.pool.ntp.org iburst
  6. server 1.centos.pool.ntp.org iburst
  7. server 2.centos.pool.ntp.org iburst
  8. server 3.centos.pool.ntp.org iburst
  9. server 0.cn.pool.ntp.org
  10. server 1.cn.pool.ntp.org
  11. server 2.cn.pool.ntp.org
  12. server 3.cn.pool.ntp.org

2.4 启动NTP

$ sudo systemctl start ntpd

2.5 设置自启

$ sudo systemctl enable ntpd

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/447718
推荐阅读
相关标签
  

闽ICP备14008679号