본문 바로가기
OS/Linux

centos / ntp

by 하하IT 2020. 4. 21.

---------------------------centos 7 -----------------------------------

 yum -y install ntp

 

systemctl enable ntpd

systemctl restart ntpd

 

systemctl status  ntpd.service

 

systemctl is-enabled ntpd.service

 

 

 

---------------------------centos 6 -----------------------------------

1. ntp설치

# yum install ntp

 

2.ntp설정

 

# vi /etc/ntp.conf

 

 ...

server kr.pool.ntp.org

server time.bora.net

server time.kornet.net

 ...

 

 

[root@po ~]# chkconfig --list | grep ntpd

ntpd            0:off   1:off   2:off   3:off   4:off   5:off   6:off

ntpdate         0:off   1:off   2:off   3:off   4:off   5:off   6:off

[root@po ~]# chkconfig ntpd on

[root@po ~]# chkconfig --list | grep ntpd

ntpd            0:off   1:off   2:on    3:on    4:on    5:on    6:off

ntpdate         0:off   1:off   2:off   3:off   4:off   5:off   6:off

[root@po ~]#

 

 

3.NTP 서비스를 시작프로그램에 등록

# chkconfig ntpd on

 

4.NTP 서비스 등록 확인

# chkconfig --list | grep ntpd

 

5.NTP 서비스를 시작

# /etc/init.d/ntpd restart

 

 

[root@ip-172-53 ng]# service ntpd restart

Shutting down ntpd:                                        [  OK  ]

Starting ntpd:                                             [  OK  ]

[root@ip-172-53 ng]# 

 

6.ntpq 확인

[root@ip-172-53 ng]# ntpq -p

     remote           refid      st t when poll reach   delay   offset  jitter

==============================================================================

*103.224.117.98  202.73.36.32     2 u   36   64  177   12.693  -23.984  10.430

-sg.kangarie.com 203.123.49.200   3 u   35   64  377    3.351   24.160   9.470

+huggyshifters.c 216.218.254.202  2 u   32   64  377    3.329   -1.107  29.846

+240.rtr.primaba 128.227.205.3    2 u    9   64  377   17.700  -11.468   7.302

[root@ip-172-53 ng]#

 

* 는 현재 sync 를 받고 있음을 의미

+ 는 ntp 알고리즘에 의해 접속은 가능하지만 sync 를 하고 있지는 않음을 의미

- 는 ntp 알고리즘에 의해 접속은 가능하지만 sync 가능 리스트에서 제외

'OS > Linux' 카테고리의 다른 글

cent os / mutt  (0) 2020.04.22
centos / timezone변경 UTC --> KST  (0) 2020.04.22
linux / scp / 원격지 <-> 로컬 파일 복사  (0) 2020.04.20
centos / port forwarding / 80 , 8080  (0) 2020.04.19
centos / openjdk  (0) 2020.04.19