我正在试验时钟。在本地盒子上更改它。在那之后,谷歌和其他 SSL 网站停止工作,所以我无法获得准确的当地时间(我没有戴手表)。幸运的是,电话在另一个房间里,所以我把它拿了出来,然后设置了时间。
但是自动化以及我在不允许使用电话的数据中心的时候呢?是否有命令行方式来查询非 SSL 远程位置以获取 UTC 时间?
Cherry 将用于获取您当地时区并设置当地时间的工具,但我也可以这样做,只会关闭几秒钟......但可以通过重复来调整它
date -s "xxx"
直到准确为止。
我查看了如何使用 curl 命令获取日期和时间?,但是当我使用时ntpq -c 'rv 0 clock' 139.59.15.185
,我得到以下输出:
139.59.15.185: timed out, nothing received
***Request timed out
和命令:
ntpq -c 'rv 0 clock' ntp.ubuntu.com
输出:
ntp.ubuntu.com: timed out, nothing received
***Request timed out
以下是 的内容sudo nano /etc/ntp.conf
:
# /etc/ntp.conf, configuration for ntpd; see ntp.conf(5) for help
driftfile /var/lib/ntp/ntp.drift
# Leap seconds definition provided by tzdata leapfile /usr/share/zoneinfo/leap-seconds.list
# Enable this if you want statistics to be logged.
#statsdir /var/log/ntpstats/
statistics loopstats peerstats clockstats filegen loopstats file
loopstats type day enable filegen peerstats file peerstats type day
enable filegen clockstats file clockstats type day enable
# Specify one or more NTP servers.
# Use servers from the NTP Pool Project. Approved by Ubuntu Technical Board
# on 2011-02-08 (LP: #104525). See http://www.pool.ntp.org/join.html for
# more information. pool 0.ubuntu.pool.ntp.org iburst pool 1.ubuntu.pool.ntp.org iburst pool 2.ubuntu.pool.ntp.org iburst pool 3.ubuntu.pool.ntp.org iburst
# Use Ubuntu's ntp s...
ntpq
命令用于查询 NTP 服务器的状态和配置,而不是用于查询时间。服务器可能不允许从随机客户端查询其状态,因此您会超时。要从远程服务器查询时间,请使用ntpdate
命令:将显示您的本地系统和
ntp.ubuntu.com
服务器之间的时间差,例如:要设置服务器宣布的本地时间
ntp.ubuntu.com
,请使用:(需要“sudo”,因为设置系统时间需要root权限)