Resposta curta: provavelmente chronyc tracking
.
Resposta longa: nptstat
em si.
NTP server package is provided by default from official CentOS /RHEL 7 repositories.
Em geral, dois pacotes principais são usados no RHEL 7 para configurar o lado do cliente:
-
ntp : este é o pacote clássico, já existente no RHEL 6, RHEL 5, etc.
Pode ser instalado emitindo o seguinte comando como 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 : esta é uma nova solução mais adequada para PCs portáteis ou servidores com problemas de conexão de rede (a sincronização de tempo é mais rápida). chrony é o pacote padrão no 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
Referências
- RHEL7: Como configurar o serviço NTP.
- 21.11. Verificando se o Daemon NTP está instalado