Qual é o comando para verificar a hora do servidor é sincronizar com o ntp no RHEL 7?

0

Qual é o comando equivalente no RHEL 7 para ntpstat ?

# ntpstat
synchronised to NTP server (ntp server ip) at stratum 5
time correct to within 102 ms
polling server every 512 s
    
por Mark 09.09.2015 / 18:10

1 resposta

2

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

por 17.09.2015 / 18:21