# 硬件时间查看:
[root@server ~]# hwclock
2023-08-20 09:17:13.071047+08:00
[root@server ~]# date -s 10:00 # 修改为错误时间
2023年 08月 20日 星期日 10:00:00 CST
[root@server ~]# date # 查看软件时间
2023年 08月 20日 星期日 10:00:06 CST
[root@server ~]# hwclock -s # 向硬件时间同步
[root@server ~]# date
2023年 08月 20日 星期日 09:19:22 CST
[root@server ~]# yum install chrony -y
[root@server ~]# systemctl start chronyd
[root@server ~]# systemctl enable chronyd
[root@server ~]# systemctl status chronyd
[root ~]# vim /etc/chrony.conf
[root ~]# systemctl restart chronyd
[root@server ~]# vim /etc/chrony.conf
# 使用 pool.ntp.org 项目中的公共服务器。
# 或者使用server开头的服务器,理论上想添加多少时间服务器都可以
# iburst表示的是首次同步的时候快速同步
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
# 根据实际时间计算出服务器增减时间的比率,然后记录到一个文件中,在系统重启后为系统做出最佳时间 补偿调整。
driftfile /var/lib/chrony/drift
# 如果系统时钟的偏移量大于1秒,则允许系统时钟在前三次更新中步进。
# Allow the system clock to be stepped in the first three updates if its offset is larger than 1 second.
makestep 1.0 3
# 启用实时时钟(RTC)的内核同步。
# Enable kernel synchronization of the real-time clock (RTC).
rtcsync
# 通过使用 hwtimestamp 指令启用硬件时间戳
# Enable hardware timestamping on all interfaces that support it.
#hwtimestamp *
# Increase the minimum number of selectable sources required to adjust the system clock.
#minsources 2
# 指定 NTP 客户端地址,以允许或拒绝连接到扮演时钟服务器的机器
# Allow NTP client access from local network.
#allow 192.168.48.0/24
# Serve time even if not synchronized to a time source.
# local stratum 10
# 指定包含 NTP 身份验证密钥的文件。
# Specify file containing keys for NTP authentication.
# keyfile /etc/chrony.keys
# 指定日志文件的目录。
# Specify directory for log files.
logdir /var/log/chrony
# 选择日志文件要记录的信息。
# Select which information is logged.
# log measurements statistics tracking
[root@server ~]# date -s 12:00
2023年 08月 20日 星期日 12:00:00 CST
[root@server ~]# vim /etc/chrony.conf # 定位第3行,修改为阿里的时间同步服务器地址
server ntp.aliyun.com iburst
# 或者直接使用阿里推荐的参数配置,清空所有内容后复制粘贴如下:
server ntp.aliyun.com iburst
stratumweight 0
driftfile /var/lib/chrony/drift
rtcsync
makestep 10 3
bindcmdaddress 127.0.0.1
bindcmdaddress ::1
keyfile /etc/chrony.keys
commandkey 1
generatecommandkey
logchange 0.5
logdir /var/log/chrony
[root@server ~]# systemctl restart chronyd
[root@server ~]# chronyc sources -v
.-- Source mode '^' = server, '=' = peer, '#' = local clock.
/ .- Source state '*' = current best, '+' = combined, '-' = not combined,
| / 'x' = may be in error, '~' = too variable, '?' = unusable.
|| .- xxxx [ yyyy ] +/- zzzz
|| Reachability register (octal) -. | xxxx = adjusted offset,
|| Log2(Polling interval) --. | | yyyy = measured offset,
|| \ | | zzzz = estimated error.
|| | | \
MS Name/IP address Stratum Poll Reach LastRx Last sample
===============================================================================
^* 203.107.6.88 2 6 77 59 +8280s[ +8280s] +/- 33ms
[root@server ~]# timedatectl status # 查看状态
Local time: 日 2023-08-20 09:51:21 CST
Universal time: 日 2023-08-20 01:51:21 UTC
RTC time: 日 2023-08-20 01:51:20
Time zone: Asia/Shanghai (CST, +0800)
System clock synchronized: yes # yes表示已经完成时间同步
NTP service: active
RTC in local TZ: no
性质 | 地址 | 同步对象 |
---|---|---|
服务端server | 192.168.13.134 | ntp.aliyun.com |
客户端node1 | 192.168.13.135 | 192.168.13.134 |
[root@server ~]# vim /etc/chrony.conf
server ntp.aliyun.com iburst # 修改第3行为阿里的时间服务器地址
allow 192.168.13.135/24 # 删除第26行的前导星号,启用白名单,将node1的ip添加进入
[root@server ~]# systemctl restart chronyd # 重启服务
[root@server ~]# chronyc sources -v # 同步测试
[root@server ~]# timedatectl status # 查看是否同步
[root@node1 ~]# vim /etc/chrony.conf
server 192.168.48.130 iburst # 修改为向server端同步时间
[root@node1 ~]# systemctl restart chronyd # 重启服务
[root@node1 ~]# timedatectl status
[root@server ~]# chronyc sources -v # -v参数表示显示内容是否有解释
.-- Source mode '^' = server, '=' = peer, '#' = local clock.
/ .- Source state '*' = current best, '+' = combined, '-' = not combined,
| / 'x' = may be in error, '~' = too variable, '?' = unusable.
|| .- xxxx [ yyyy ] +/- zzzz
|| Reachability register (octal) -. | xxxx = adjusted offset,
|| Log2(Polling interval) --. | | yyyy = measured offset,
|| \ | | zzzz = estimated error.
|| | | \
MS Name/IP address Stratum Poll Reach LastRx Last sample
===============================================================================
^
表示服务器,=
表示对等方,#
表示本地连接的参考时钟。***** | chronyd当前同步到的源 |
---|---|
+ | 表示可接受的信号源,与选定的信号源组合在一起 |
- | 表示被合并算法排除的可接受源 |
? | 表示已失去连接的源 |
x | 表示chronyd认为是虚假行情的时钟(即,其时间与大多数其他来源不一致) |
~ | 表示时间似乎具有太多可变性的来源 |
[root@server ~]# chronyc sourcestats -v
[root@server ~]# chronyc activity -v
[root@server ~]# chronyc -a makestep
要求: 配置ntp时间服务器,确保客户端主机能和服务主机同步时间
准备工作: 两台虚拟机,一台做客户端,一台做服务器,这里:
服务器IP地址: 192.168.13.134
客户端IP地址: 192.168.13.135
1、服务器思路以及配置
[root ~]# yum install chrony -y
上次元数据过期检查:2:56:29 前,执行于 2023年08月20日 星期日 10时27分38秒。
软件包 chrony-4.3-1.el9.x86_64 已安装。
依赖关系解决。
无需任何处理。
完毕!
[root ~]#
[root ~]# vim /etc/chrony.conf
[root ~]# systemctl restart chronyd
[root ~]# vim /etc/chrony.conf
[root ~]# systemctl restart chronyd
[root ~]# chronyc sources -v
.-- Source mode '^' = server, '=' = peer, '#' = local clock.
/ .- Source state '*' = current best, '+' = combined, '-' = not combin
| / 'x' = may be in error, '~' = too variable, '?' = unusab
|| .- xxxx [ yyyy ] +/-
|| Reachability register (octal) -. | xxxx = adjusted o
|| Log2(Polling interval) --. | | yyyy = measured o
|| \ | | zzzz = estimated
|| | | \
MS Name/IP address Stratum Poll Reach LastRx Last sample
=======================================================================
^* 192.168.13.134 3 6 17 14 -41us[ -44us] +
[root ~]# timedatectl status
Local time: 日 2023-08-20 10:33:03 CST
Universal time: 日 2023-08-20 02:33:03 UTC
RTC time: 日 2023-08-20 02:33:03
Time zone: Asia/Shanghai (CST, +0800)
System clock synchronized: yes
NTP service: active
练习结束。