Linux ntp配置(ntp, chrony)

Linux

ntp / chrony / timedate / date / hwclock

1
2
3
4
systemctl status ntpd (systemctl status chronyd)
ntpstat (chronyc tracking)
ntpq -pn (chronyc -n sources -v / chronyc -n sourcestats -v / chronyc activity)
ntpdate IP-addr (chronyc makestep)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[x@db ~]$ systemctl status systemd-timedated.service
● systemd-timedated.service - Time & Date Service
Loaded: loaded (/usr/lib/systemd/system/systemd-timedated.service; static; vendor preset: disabled)
Active: inactive (dead)
Docs: man:systemd-timedated.service(8)
man:localtime(5)
http://www.freedesktop.org/wiki/Software/systemd/timedated
[x@db ~]$
[x@db ~]$ timedatectl
list-timezones set-ntp set-timezone
set-local-rtc set-time status
[x@db ~]$ timedatectl status
Local time: Tue 2020-10-27 00:42:00 CST
Universal time: Mon 2020-10-26 16:42:00 UTC
RTC time: Mon 2020-10-26 16:42:00
Time zone: Asia/Shanghai (CST, +0800)
NTP enabled: no
NTP synchronized: yes
RTC in local TZ: no
DST active: n/a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[root@Geeklp-Administrator ~]# hwclock 
2017年12月18日 星期一 16时39分40秒 -0.110050 秒
[root@Geeklp-Administrator ~]# hwclock --show
2017年12月18日 星期一 16时39分57秒 -0.293885 秒

[root@Geeklp-Administrator ~]# hwclock -s
[root@Geeklp-Administrator ~]# hwclock --hctosys
[root@Geeklp-Administrator ~]# hwclock
2017年12月18日 星期一 17时17分39秒 -0.953704 秒

[root@Geeklp-Administrator ~]# hwclock -w
[root@Geeklp-Administrator ~]# hwclock
2017年12月18日 星期一 17时02分16秒 -0.646804 秒
[root@Geeklp-Administrator ~]# hwclock --systohc
[root@Geeklp-Administrator ~]# date
2017年 12月 18日 星期一 17:14:08 CST
[root@Geeklp-Administrator ~]# hwclock
2017年12月18日 星期一 17时14分17秒 -0.285800 秒

[root@Geeklp-Administrator ~]# hwclock -s --date "12 oct 2013 13:01"
[root@Geeklp-Administrator ~]# hwclock
2017年12月18日 星期一 17时09分37秒 -0.047061 秒
[root@Geeklp-Administrator ~]# date
2017年 12月 18日 星期一 17:09:44 CST
[root@Geeklp-Administrator ~]# hwclock --set --date "2015-11-23 21:17:23" --utc
[root@Geeklp-Administrator ~]# hwclock
2015年11月23日 星期一 21时18分53秒 -0.208850 秒
[root@Geeklp-Administrator ~]# date
2017年 12月 18日 星期一 17:12:54 CST

AIX

Reference