1)請確認是否已經安裝ntp
[root@web002 yum.repos.d]# rpm -qa |grep ntp
ntpdate-4.2.6p5-28.el7.centos.x86_64
ntp-4.2.6p5-28.el7.centos.x86_64
2)若只有ntpdate而未見ntp,則需刪除原有ntpdate。如:
ntpdate-4.2.6p5-22.el7_0.x86_64
fontpackages-filesystem-1.44-8.el7.noarch
python-ntplib-0.3.2-1.el7.noarch
3)刪除已安裝ntp
yum –y remove ntpdate-4.2.6p5-22.el7.x86_64
4)重新安裝ntp
yum -y install ntp
1)修改主節點的/etc/ntp.conf
【命令】vim /etc/ntp.conf
【內容】
driftfile /var/lib/ntp/drift
restrict default nomodify notrap nopeer noquery ##當前節點ip
restrict 127.0.0.1
restrict ::1
restrict 172.16.1.0 mask 255.255.255.0 nomodify notr ##集群所在網段的閘道器(gateway),子網掩碼
##上游時間伺服器
server ntp1.aliyun.com
##系統時間伺服器-無法連線公網時
server 127.127.1.0
fudge 127.127.1.0 stratum 10 #<==設定stratum級別
includefile /etc/ntp/crypto/pw
keys /etc/ntp/keys
disable monitor
修改後如下(主節點)
5)主節點啟動ntp服務
systemctl start ntpd
systemctl enable ntpd
6)客戶端執行同步時間
ntpdate master1 ##master為時間伺服器的ip
實驗 搭建時間伺服器 郵件伺服器
1 搭建時間伺服器,客戶端可在每天早晨的9 00整從ntp伺服器更新自己的時間。2 搭建郵件伺服器,使用wukong ceshi.com給wuneng ceshi.com使用者發一封郵件,內容為biechile。1 1.服務端 裝chrony包 yum install y chrony 2.編輯配置...
時間伺服器的搭建
date s 2017 03 03 03 03 03 yum install ntpdate 服務操作說明 service crond stop 關閉服務 service crond restart 重啟服務 service crond reload 重新載入配置 service crond sta...
ntp時間伺服器搭建
我在學習過程中經常遇到伺服器時間不一致導致很多故障,經過了很多次麻煩的經歷之後決定寫出來,以便於自己以後需要再來拿出來用,也希望可以幫到需要的人 yum install y ntp ntpdate備份配置檔案 cp etc ntp.conf etc ntp.conf.bak將注釋掉的去掉,新建配置文...