본문 바로가기
리눅스

[Linux/CentOS7] Chrony 리눅스 시간 동기화 (NTP)

by 공대냥이 2018. 9. 3.
반응형

 

 

 

어렵고 복잡한 설명은 치우고 CentOS7 / RHEL7 에서 시스템 시간 설정하는 방법을 알아보자

 

 

1. 시스템의 위치에 맞는 시간대를 확인하고 맞지 않다면 변경한다.

 

timedatectl                                                       Local time: 월 2018-09-03 13:10:10 KST  Universal time: 월 2018-09-03 04:10:10 UTC        RTC time: 월 2018-09-03 04:10:10       Time zone: Asia/Seoul (KST, +0900)    NTP enabled: yesNTP synchronized: no RTC in local TZ: no      DST active: n/a

 

 

# timedatectl set-timezone [원하는 나라/지역]      /* 시간대 변경 명령어 */

 

# tzselect                        /* 지역별 시간대 확인 명령어 */

 

2. NTP 동기화 활성화 타임서버는 time.bora.net을 사용

 

2.1 시스템의 시간이 time.bora.net과 동기화 되도록 chronyd 구성

# vi /etc/chrony.conf           /* chronyd 설정파일 수정 */

 

......

server time.bora.net iburst

......

 

2.2 chronyd 서비스 재실행 & 재부팅시 자동 실행 설정

# systemctl restart chronyd

 

# systemctl enable chronyd

 

2.3 NTP 동기화 실행

# timedatectl set-ntp true

 

3. NTP 동기화 확인

 

# timedatectl 

........

NTP synchronized: yes

........

 

chronyc sources -v210 Number of sources = 1
  .-- Source mode  '^' = server, '=' = peer, '#' = local clock. / .- Source state '*' = current synced, '+' = combined , '-' = not combined,| /   '?' = unreachable, 'x' = time may be in error, '~' = time too variable.||                                                 .- xxxx [ yyyy ] +/- zzzz||      Reachability register (octal) -.           |  xxxx = adjusted offset,||      Log2(Polling interval) --.      |          |  yyyy = measured offset,||                                \     |          |  zzzz = estimated error.||                                 |    |           \MS Name/IP address         Stratum Poll Reach LastRx Last sample               ========================================================^* time.bora.net                 2   6   177    21   -369us[ -410us] +/-   86ms^- send.mx.cdnetworks.com        2   6   377    60   +620us[ +777us] +/-  115ms^- dadns.cdnetworks.co.kr        2   6   377    54  -7823us[-7665us] +/-  110ms

 

반응형