Não é possível iniciar o NTP [fechado]

0

Na semana passada funciona corretamente, mas agora, minha máquina virtual dentro do virtualbox está fora de sincronia por 5 minutos

$ systemctl status systemd-timesyncd
● systemd-timesyncd.service - Network Time Synchronization
   Loaded: loaded (/usr/lib/systemd/system/systemd-timesyncd.service; enabled; vendor preset: enabled)
   Active: active (running) since Wed 2015-09-30 18:52:31 WIB; 10s ago
     Docs: man:systemd-timesyncd.service(8)
 Main PID: 25684 (systemd-timesyn)
   Status: "Idle."
   CGroup: /system.slice/systemd-timesyncd.service
           └─25684 /usr/lib/systemd/systemd-timesyncd

$ timedatectl set-ntp true 

$ timedatectl status
      Local time: Wed 2015-09-30 18:54:17 WIB
  Universal time: Wed 2015-09-30 11:54:17 UTC
        RTC time: Wed 2015-09-30 11:46:27
       Time zone: Asia/Jakarta (WIB, +0700)
 Network time on: yes
NTP synchronized: no
 RTC in local TZ: no

$ cat /etc/systemd/timesyncd.conf

[Time]
NTP=0.asia.pool.ntp.org,1.asia.pool.ntp.org,2.asia.pool.ntp.org,3.asia.pool.ntp.org
FallbackNTP=0.arch.pool.ntp.org 1.arch.pool.ntp.org 2.arch.pool.ntp.org 3.arch.pool.ntp.org

qual é a causa de NTP synchronized: no ?

Estou usando o ArchLinux de 64 bits e o link

EDITAR ah funciona agora

$ sudo systemctl daemon-reload 
$ systemctl restart ntpd                                                                                                                                                                                                                                
$ systemctl restart systemd-timesyncd
$ systemctl restart ntpd
$ timedatectl status                                                                                                                                                                                                                                    
      Local time: Wed 2015-09-30 18:56:49 WIB
  Universal time: Wed 2015-09-30 11:56:49 UTC
        RTC time: Wed 2015-09-30 11:56:49
       Time zone: Asia/Jakarta (WIB, +0700)
 Network time on: yes
NTP synchronized: yes
 RTC in local TZ: no
    
por Kokizzu 30.09.2015 / 13:57

1 resposta

1

Você está tentando executar um servidor ntp completo em uma máquina virtual. As máquinas ntp e virtual não funcionam bem juntas, pois o relógio emulado viola as suposições feitas pelo ntp. Em vez disso, execute ntp no host e sntp nas máquinas virtuais para sincronizar com o host. Isso não é tão preciso, mas não tem os problemas de sincronização da execução do ntp em uma máquina virtual.

    
por 02.10.2015 / 03:13

Tags