1. NTP 설치
sudo yum install ntp의존관계가 있는 ntpdate도 함께 설치된다.
NTP 서버로 시간 정보를 단순 쿼리하는 방법
ntpdate -q time.bora.net
2. NTP 설정
sudo vi /etc/ntp.conf기본 서버 설정을 주석 처리하고 적당한 NTP 서버를 추가한다.
/etc/ntp.conf
# Use public servers from the pool.ntp.org project. # Please consider joining the pool (http://www.pool.ntp.org/join.html). #server 0.centos.pool.ntp.org iburst #server 1.centos.pool.ntp.org iburst #server 2.centos.pool.ntp.org iburst #server 3.centos.pool.ntp.org iburst server time.bora.net
3. 시스템 서비스 등록
sudo chkconfig ntpd on
시스템 서비스 runlevel 확인
chkconfig --list | grep ntpd
ntpd 0:해제 1:해제 2:활성 3:활성 4:활성 5:활성 6:해제
chkconfig --list | grep ntpd
ntpd 0:해제 1:해제 2:활성 3:활성 4:활성 5:활성 6:해제
4. NTP 시작
sudo service ntpd start
프로세스 확인
ps -ef | grep ntpd
NTP 서버 상태 쿼리
ntpq -p
ps -ef | grep ntpd
NTP 서버 상태 쿼리
ntpq -p