● 공통
▶ ntpd 를 설치
# yum install ntp
● Centos6
▶ nptd 데몬을 시작
# /etc/init.d/ntpd start
▶ 부팅시에도 자동 실행설정
# /sbin/chkconfig ntpd on
▶ 테스트 위해서 수작업 동기화
# ntpdate -d 0.centos.pool.ntp.org
▶ 동기화 확인
# grep ntpd /var/log/messages|tail
● Centos7
▶ 가까운 곳에 있는 시간 서버를 사용 변경 ( 서버 주소는 http://www.pool.ntp.org/에서 구할수 있다 )
#vi /etc/ntp.conf 수정
#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 0.asia.pool.ntp.org
server 1.asia.pool.ntp.org
server 2.asia.pool.ntp.org
server 3.asia.pool.ntp.org
▶ ntp 서비스를 사용할 수 있도록 방화벽을 설정
# firewall-cmd --add-service=ntp --permanent
▶ 방화벽을 다시 로드
# firewall-cmd --reload
▶ nptd 데몬을 시작
# systemctl start ntpd
▶ 부팅시에도 자동 실행설정
# systemctl enable ntpd
● 공통
▶ 테스트 위해서 수작업 동기화
# ntpdate -d 0.centos.pool.ntp.org
▶ 동기화 확인
# grep ntpd /var/log/messages|tail
'OS' 카테고리의 다른 글
[리눅스] IP변경 (0) | 2016.06.08 |
---|---|
[리눅스] 방화벽 iptables 설정 (0) | 2016.04.05 |
[리눅스] 프로세스 죽이기 (0) | 2015.09.26 |
[apache] 자동재시작 (0) | 2015.09.26 |
[apache] Prefork와 Worker 설정 (0) | 2015.09.23 |