centos7 기준입니다
mast01~03, work01~03의 6대의 서버가 있고, mast01,mast02가 ntp 메인입니다.
1. ntp 설치
action server: all
User: root
pwd: -
yum install -y ntp
2. ntp 설정파일 수정 (* 각 서버마다 콘피그값 다름)
action server: all
User: root
pwd: -
# mast01 서버
vi /etc/ntp.conf
# 주석 해제 및 앞단 ip 해당 서버의 ip의 D클래스는 0으로 수정
# 예를 들어 mast01서버가 192.168.56.100이라면 아래와 같이 수정
restrict 192.168.56.0 mask 255.255.255.0 nomodify notrap
# 4행 주석 처리
#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 127.127.1.0
# mast02 서버
vi /etc/ntp.conf
# 주석 해제 및 앞단 ip 해당 서버의 ip의 D클래스는 0으로 수정
# 예를 들어 mast02서버가 192.168.56.101이라면 아래와 같이 수정
restrict 192.168.56.0 mask 255.255.255.0 nomodify notrap
# 4행 주석 처리
#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 mast01
server 127.127.1.0
server 127.127.1.0
# mast03, work01~03서버
vi /etc/ntp.conf
# 4행 주석 처리
#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 mast01
server mast02
3. ntp 활성화
action server: all
User: root
pwd: -
systemctl enable ntpd
systemctl start ntpd
4. ntp 상태확인
action server: all
User: root
pwd: -
ntpq -p
반응형
'Linux' 카테고리의 다른 글
linux) yum install npm (0) | 2024.03.14 |
---|---|
centos linux java 환경변수설정 (0) | 2023.07.24 |
centos linux python 버전 변경 (0) | 2023.07.18 |
centos linux 파일 퍼미션권한 변경 및 부여 (0) | 2023.07.18 |
centos linux 자주 쓰는 명령어 정리 (0) | 2023.07.18 |