[Linux] ¼¹ö°£ ½Ã°£ µ¿±âÈ chrony
http://ehostidc.co.kr/center/EH050402.php?no=177731&choose=title&keyw¡¦ (321)https://blog.naver.com/goethe1/221629977845 (373)
외부랑 동기화하는 타임서버 마스터를 한대 두고, 타 내부서버는 마스터 서버와 동기화 되도록 설정.
유틸 : chrony
테스트 환경
마스터 서버 : 192.168.9.11
클라이언트 : 192.168.9.51 / 192.168.9.61
테스트 OS : Ubuntu 16.04
ntp가 설치되어 있을 경우 삭제 필요
1. chrony 설치 (master / client 공통)
root@EhostICT:/home/user# apt install chrony
2. master 환경 설정 및 service start
root@EhostICT:/home/user# vi /etc/chrony/chrony.conf
#pool 2.debian.pool.ntp.org offline iburst# korea time server
server 1.kr.pool.ntp.org
server 0.asia.pool.ntp.org
server 2.asia.pool.ntp.org#client server network
allow 192.168.9.0/24
root@EhostICT:/home/user#systemctl restart chrony
3. client 환경 설정 및 service start
root@client1:/home/user#vi /etc/chrony/chrony.conf
#pool 2.debian.pool.ntp.org offline iburst
# time server master ip
server 192.168.9.11
root@client:/home/user# systemctl restart chrony
4. 동기화 보기
마스터 : root@controller:/home/user# chronyc tracking
client : root@com1:/home/user# chronyc tracking
5. 동기화 소스 보기
마스터 : root@controller:/home/user# chronyc sources
client : root@com1:/home/user# chronyc sources