一、準備伺服器,三颱伺服器
192.168.207.133(server端)
192.168.207.137(client端)
192.168.207.132(client端)
二、安裝server端
2.1 yum安裝
yum install ntp ntpdate
2.2 編輯配置檔案
vim /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
192.168.207.133
fudge
127.127.1.0 stratum 11
2.3. 啟動服務
systemctl start ntpdsystemctl enable ntpd.service #設定開機啟動服務
三、安裝客戶端
3.1 yum安裝
yum install ntp ntpdate
3.2 同步時間
ntpdate -d -b 192.168.207.133
3.3 編輯配置檔案
和server端相同
3.4 啟動服務
systemctl start ntpdsystemctl enable ntpd.service #設定開機啟動服務
centos 7 搭建ntp 伺服器
restrict 192.168.1.0 netmask 255.255.255.0 nomodify notrap第一步 安裝ntp yum install ntp 第二步,查詢最近的時間同步伺服器 第三部編輯 etc ntp.conf server 127.127.1.0 iburst loca...
centos 7 搭建ntp 伺服器
第一步 安裝ntp yum install ntp第二步,查詢最近的時間同步伺服器 第三部編輯 etc ntp.conf server 127.127.1.0 iburst local clock 當外部時間伺服器不可用的時候,使用本機時間作為時間服務的標準 fudge 127.127.1.0 st...
centos7安裝ntp服務
安裝ntp服務 查詢是否安裝了ntp rpm qa grep ntp yum install y ntp 修改所有節點的ntp.conf vi etc ntp.conf 新增以下內容 當前節點ip位址 restrict 10.0.32.20 nomodify notrap nopeer noquer...