본문 바로가기

개발자이야기/Linux이야기

centos ntp 서버 설정

반응형

출처 +=========> http://blog.daum.net/hypermax/12



타임 서버를 호스트 파일에 저장

[root@centos]vi /etc/hosts
xxx.xxx.xxx.xxx    rtdvlp
xxx.xxx.xxx.xxx    ecdvlp

ntp가 설치 되었는지 확인
[root@centos]rpm -qa | grep ntp

서버 설정

[root@centos]vi /etc/ntp.conf
server xxx.xxx.xxx.xxx 

server xxx.xxx.xxx.xxx 

 

실행
[root@centos]/etc/rc.d/init.d/ntpd restart

부팅 떄마다 실행 가능하도록 설정

[root@centos]ntsysv
ntpd

하루에 한번씩 시스템 시각 일치

[root@centos]vi /etc/cron.daily/sys_clocks
/sbin/clock -w
[root@centos]chmod 755 /etc/cron.daily/sys_clocks

실행확인

[root@centos]/usr/sbin/ntpq -p

호스트명 또는 IP값 확인

반응형

'개발자이야기 > Linux이야기' 카테고리의 다른 글

멀티 톰캣  (0) 2014.12.04
centos 시간 동기화  (0) 2014.07.24
samba 환경설정  (0) 2014.06.12
java 제거 및 설치  (0) 2014.04.09
linux system 시간 동기회  (0) 2013.08.12