Какая эквивалентная команда в RHEL 7 для ntpstat
?
# ntpstat
synchronised to NTP server (ntp server ip) at stratum 5
time correct to within 102 ms
polling server every 512 s
Какая эквивалентная команда в RHEL 7 для ntpstat
?
# ntpstat
synchronised to NTP server (ntp server ip) at stratum 5
time correct to within 102 ms
polling server every 512 s
Краткий ответ: вероятно, chronyc tracking
.
Длинный ответ: сам nptstat
.
Пакет NTP-сервера предоставляется по умолчанию из официальных репозиториев CentOS /RHEL 7.
Обычно в RHEL 7 используются два основных пакета для настройки клиентской части:
ntp: это классический пакет, уже существующий в RHEL 6, RHEL 5 и т. д.
Его можно установить, введя в качестве пользователя root следующую команду:
yum install ntp # this to install
systemctl enable ntpd # this to activate
systemctl start ntpd # this to start
ntpq -p # for info about the time synchronization process
ntpstat # to have a report
systemctl stop ntpd # To synchronize a server you need: to stop
ntpdate pool.ntp.org # synchronize
systemctl start ntpd # and start again
chrony: это новое решение, лучше подходящее для портативных ПК или серверов с проблемами сетевого подключения (синхронизация времени быстрее). chrony - это пакет по умолчанию в RHEL 7.
yum install -y chrony # to install
systemctl enable chronyd # to enable
systemctl start chronyd # to start
chronyc tracking # To get information about the main time reference
chronyc sources -v # equivalent information to the ntpq
ntpdate pool.ntp.org # To quickly synchronize a server
Рекомендации