準備環境:
服務端 192.168.124.73
客戶端 192.168.124.147
1.下載
yum install ntp ntpdate -y
2.備份文件
cp /etc/ntp.conf /etc/ntp.conf.bak
3.編輯文件
vim /etc/ntp.confvim
在裏面
將#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap前面的註釋去掉
再在下面添加一行 server 192.168.124.73(服務端Ip)
4.啓動服務
service ntpd start服務器
5.檢測服務器是否同步
ntpq -p
6.關閉防火牆
systemctl stop firewalld
setenforce 0ide
2、客戶端配置rest
1.下載
yum install ntp ntpdate -yserver
2.編輯文件
vim /etc/ntp.confip
在裏面添加
server 192.168.124.147(客戶端Ip)
3.關閉防火牆
systemctl stop firewalld
setenforce 0同步
4.等待漫長的十分鐘it
5.實現同步
ntpdate 192.168.124.73(服務端ip)class