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
동기화 중단 에서 동기화 상태가 됩니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Redash를 사용할 때 몰랐던 SQL을 쓰는 법을 배웠습니다.최근 redash에서 sql을 쓸 기회가 많고, 이런 쓰는 방법이 있었는지와 sql에 대해 공부를 다시하고 있기 때문에 배운 것을 여기에 씁니다. Redash란? 월별로 데이터를 표시하고 싶습니다 주별로 데이터를 표...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.