VMware Esxi 하이퍼바이저에서 사용하는 NTP 서버를 어떻게 변경합니까?

VMware Esxi 하이퍼바이저에서 사용하는 NTP 서버를 어떻게 변경합니까?

NTP사용하고 있는 서버를 변경하려고 합니다 VMware Esxi hypervisor.

내가 사용하는 시스템은 다음과 같습니다.

[root@machine:~] esxcli system version get
   Product: VMware ESXi
   Version: 6.0.0
   Build: Releasebuild-7967664
   Update: 3
   Patch: 84

다음 명령을 실행했습니다.

[root@machine:~] ps | grep ntp
21974404  21974404  ntpd

=> ntpd서비스가 실행 중입니다.

[root@machine:~] cat /etc/ntp.conf
restrict 127.0.0.1
restrict default kod nomodify notrap noquery
driftfile /etc/ntp.drift
server 0.pool.ntp.org
server 1.pool.ntp.org
server 2.pool.ntp.org

=> 마지막 세 줄을 /etc/ntp.conf.

[root@machine:~] /etc/init.d/ntpd  restart
Stopping ntpd
watchdog-ntpd: Terminating watchdog process with PID 21974394
Starting ntpd

ntpd=> 서비스를 다시 시작했습니다 .

[root@machine:~] ntpq -p
     remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
 halmahera.ordim .INIT.          16 u    -  128    0    0.000    0.000   0.000
 orb.pstam.ovh   .INIT.          16 u    -  128    0    0.000    0.000   0.000
 likho.oneyed.mo .INIT.          16 u    -  128    0    0.000    0.000   0.000

=> 추가했는데도 {0, 1, 2}.pool.ntp.org servers실제로 /etc/ntp.confNTP 서버가 교체되지는 않는 것 같습니다.

이 서버를 변경하는 데 도움을 주실 수 있나요?

감사합니다.

편집 1

[root@machine:~] ps aux | grep ntpd
ps: no non-option arguments
ps
    -C           Display only cartels
    -P           Display PCID
    -T           Display used time
    -c           Display verbose command line
    -g           Display session ID and process group
    -i           Display summary information
    -j           Display GID
    -n           Display nChildren (only with --tree)
    -N           Display nThreads  (only with --tree)
    -s           Display state
    -t           Display type
    -u           Display only userworlds
    -U [N]       Display [only] userspace ID
    -v           Display non truncated values
    -Z           Display the security domain
    -z           Display zombie cartels
    -J or --tree Display userworlds in a tree layout

[root@machine:~] ntpq -c rv
ntpq: read: Connection refused

관련 정보