Centos9使用chrony服务同步时间

安装chrony命令

Centos9里是预安装的,没有安装的话执行以下命令:

yum install -y chrony

Centos9使用chrony服务同步时间_第1张图片
Centos9 时间同步要使用chrony命令,ntp命令没有了

查看状态

#启用chronyd服务
systemctl enable chronyd

#重启chronyd服务
systemctl restart chronyd

#查看chronyd服务状态
systemctl status chronyd

修改配置文件

vim /etc/chrony.conf

Centos9使用chrony服务同步时间_第2张图片

server 0.centos.pool.ntp.org iburst
server 1.centos.pool.ntp.org iburst
server 2.centos.pool.ntp.org iburst
server 3.centos.pool.ntp.org iburst
pool ntp1.aliyun.com iburst
pool ntp2.aliyun.com iburst
pool ntp3.aliyun.com iburst
pool ntp4.aliyun.com iburst
pool ntp5.aliyun.com iburst
pool ntp6.aliyun.com iburst

推荐使用阿里的时间端,也可以使用本地的ip地址,同步目标的系统时间。内网设备,需要使用内网的时间服务器同步时间。
例如:时间同步地址为:10.70.130.88

pool 10.70.130.88 iburst

表示设置的时间同步服务器IP为:10.70.130.88
再重启chronyd服务即可

重启chronyd服务

systemctl restart chronyd

Centos9使用chrony服务同步时间_第3张图片

查看同步情况

通过命令进行查看是否同步,出现^*即表示有可同步的源

chronyc sources

Centos9使用chrony服务同步时间_第4张图片
System clock synchronized: yes 表示同步成功

Centos9使用chrony服务同步时间_第5张图片

设置服务器时区

查看时区命令:

timedatectl
[root@localhost tools]# timedatectl
               Local time: Sat 2024-01-27 16:41:26 CST
           Universal time: Sat 2024-01-27 08:41:26 UTC
                 RTC time: Sat 2024-01-27 08:41:27
                Time zone: Asia/Shanghai (CST, +0800)
System clock synchronized: yes
              NTP service: active
          RTC in local TZ: no
[root@localhost tools]#

如果时区不对,需要执行以下命令,修改时区。
执行如下命令修改时区:

timedatectl set-timezone Asia/Shanghai 

附页1:时区符号信息

● CST:中国、澳大利亚等的标准时间。
● UTC:协调世界时间。将地球分为二十四时区,每个时区都有自己的本地时间。在国际无线电通信场合,为了统一起见,使用一个统一的时间。
● GMT:格林威治标准时间。指位于英国伦敦格林尼治天文台的标准时间,因为本初子午线被定义在通过那里的经线。
● DST:夏令时,指在夏天太阳升起的比较早时,将时间拨快一小时,以提早日光的使用。
● RTC:实时时钟,可以提供时钟日历的功能。

附页2:sourcestats -v中符号的含义

chronyc sourcestats -v

Centos9使用chrony服务同步时间_第6张图片
● NP:测量集中的采样点数。
● NR: 具有相同符号的残差运行数。
● Span:测量集的长度(时间)。
● Frequency:估计时钟频率误差 (ppm)。
● Freq Skew:频率错误估计。
● Offset:估计偏移量。
● Std Dev:标准偏差。

附页3:sources -v中显示的符号含义

chronyc sources -v

Centos9使用chrony服务同步时间_第7张图片

你可能感兴趣的:(运维学习笔记,linux,运维)