一、安裝
# 安裝
yum -y install chrony
二、配置# 修改配置檔案
vi /etc/chrony.conf
修改/etc/chrony.conf 以下內容:
server ntp1.aliyun.com
server ntp2.aliyun.com
server time1.cloud.tencent.com
server time2.cloud.tencent.com
# 指定 ntp 客戶端位址,以允許或拒絕連線到扮演時鐘伺服器的機器
allow 192.168.0.0/16
# 重啟服務
systemctl restart chronyd
# 開啟開機自動啟動
systemctl enable chronyd
# 檢視時間同步狀態
timedatectl status
# 開啟網路時間同步
timedatectl set-ntp true
三、配置防火牆# 啟動服務
systemctl start firewalld.service
# 放行udp 123埠
firewall-cmd --zone=public --add-port=123/udp --permanent
# 過載配置
firewall-cmd --reload
# 檢視配置
firewall-cmd --list-all
# 開啟自動啟動
systemctl enable firewalld.service
四、使用# 檢視狀態
chronyc sourcestats -v
chronyc activity -v
# 檢視ntp詳情
chronyc tracking -v
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...
centos 7 安裝NTP服務
1.兩台伺服器 139 server端 140 client端 2.server端 2.1 yum安裝 yum install ntp ntpdate 2.2 編輯配置檔案 vim etc ntp.conf server 0.centos.pool.ntp.org iburst server 1.c...
Centos7配置ntp時間伺服器
centos7配置時間伺服器,假如配置乙個服務端,n個客戶端 服務端 1 安裝ntp服務 yum install ntp ntpdate y 2 查詢當前地區,最適合的時間伺服器 步驟一 開啟 7 建立job,每天定時自動同步遠端服務 crontab e 00 01 root usr sbin nt...