NTP 서비스 구축

2385 단어 MySQL

1. 준비 환경
CentOS7 운영체제, 2대 준비, 1대는 대외 주 노드, 즉 시간 부여 노드(ntp server), 다른 1대는 내부 권한 수여 노드
 
2. IP 계획
호스트 이름: IP
* ntp_server:192.168.131.131
* 제공 시점: 192.168.131.133
 
3. host와 ip 맵 설정(서버와 클라이언트가 각각 설정)
 
vim/etc/hosts
# 증가
192.168.131.131 ntp_server
 
# 통과 여부 테스트
ping ntp_server
 
 
방화벽 주의, ntp 사용 포트 차단
 
2. 설치 배치
yum –y install ntp
3. 이하 ntp 서버에서 조작
1. 시간대 설정
통의 시간대는 일반적으로 설치할 때 이미 설치되어 있다
 
 
2. 비교적 정확한 시간에 따라 설정하고 설정 명령은 다음과 같다.
date -s “2019-02-19 16:00:00”
 
3. BIOS에 쓰기
업데이트가 완료되면 BIOS에 시스템의 현재 시간을 기록해야 합니다. 간단합니다. 명령을 하나만 실행하면 됩니다. 명령은 다음과 같습니다.
hwclock -w
 
4. 프로필은 다음과 같다.
[root@localhost opt]# cat /etc/ntp.conf

driftfile /var/lib/ntp/drift

restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery

restrict 127.0.0.1
restrict -6 ::1
# Hosts on local network are less restricted.
restrict 192.168.131.0 mask 255.255.255.0 nomodify notrap

server 127.127.1.0
fudge 127.127.1.0 stratum 10

includefile /etc/ntp/crypto/pw

keys /etc/ntp/keys

disable monitor

 
4. 시작 검사
서비스 ntpd start # 시작
systemctl start ntpd
 
#remote에서 별표(*)가 있는 ntp 차단기에서 선택한 시간제 서비스 포인트는 LOCAL이 본체를 표시합니다
[root@localhost opt]# ntpq -p
     remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
*LOCAL(0)        .LOCL.          10 l    8   64  377    0.000    0.000   0.000

 
5. 배치 피시간 노드
 
ntp 로 설정서버 시간
ntpdate ntp_server
구성 파일:
[root@localhost ~]# cat /etc/ntp.conf

driftfile /var/lib/ntp/drift

restrict default nomodify notrap nopeer noquery

restrict 127.0.0.1
restrict ::1

server ntp_server iburst

includefile /etc/ntp/crypto/pw

keys /etc/ntp/keys

disable monitor

 
검사 시작
service ntpd start
[root@localhost ~]# cat /etc/hosts
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.131.131 ntp_server

 
 
 
잠시 후, 결점을 수여받은 시간은 ntp 서버와 동기화됩니다
ntpstate
동기화 중단 에서 동기화 상태가 됩니다.

좋은 웹페이지 즐겨찾기