ntp時間同步

2021-10-04 00:09:24 字數 1196 閱讀 2048

centos 6.4已經自帶了ntp了,無需安裝

檢查是否已安裝了ntp rpm -qa | grep ntp

如果需要安裝:yum -y install ntp

檢查是否開機啟動

sudo chkconfig --list ntpd

設定開機啟動

sudo chkconfig ntpd on

為了防止時間相差過大,請先手工同步一下服務端時間

service ntpd status 保證ntp處於關閉狀態,否則手工同步會報錯 the ntp socket is in use, exiting

手工同步命令

ntpdate cn.ntp.org.cn #cn.ntp.org.cn 中國ntp伺服器

vim /etc/ntp.conf

restrict 192.168.56.0 mask 255.255.255.0 nomodify

#server cn.ntp.org.cn

server s1a.time.edu.cn

vim /etc/ntp.conf

server hadoop1

啟動ntp

service ntpd start

service ntpd restart

netstat -upnl |grep ntpd //檢視時程

ntpq -pn //檢視同步的伺服器ip

ntpstat //同步的結果

ntpq -c version

watch ntpq -p

ntpdate -u ip -> no server suitable for synchronization found

判斷:在ntp客戶端用ntpdate –d serverip檢視,發現有「server dropped: strata too high」的錯誤,並且顯示「stratum 16」。而正常情況下stratum這個值得範圍是「0~15」。

原因:ntp server還沒有和其自身或者它的server同步上。在ntp server上重新啟動ntp服務後,ntpserver自身或者與其server的同步的需要乙個時間段,這個過程可能是5分鐘,在這個時間之內在客戶端執行ntpdate命令時會產生no server suitable for synchronization found的錯誤。

處理:等待幾分鐘後,重試一般解決。

也可以使用命令 ntpq -p檢視情

ntp 時間同步

由於硬體的原因,機器或多或少的根標準時間對不上,乙個月的誤差幾秒到幾分鐘不等。對於伺服器來說時間不准,會有很多麻煩。例如,支付的時候,無法下單,遊戲無法登入等。自己用的pc就無所謂了,手動改一下就行了。硬體時間的設定,可以用hwclock或者clock命令。其中,clock和hwclock用法相近,...

NTP時間同步

ntp即可以是伺服器,也可以是客戶機,總層數不能超過15 伺服器 192.168.4.5 24 yum y install chrony vim etc chrony.conf server ip 網域名稱 iburst 指明上一層ip,iburst表示盡快同步 server 210.72.145....

NTP同步時間

ntp同步時間設定 1 準備兩台虛擬機器 root localhost yum y install ntp ntpdate 編輯第一台虛擬機器 在這裡插入描述 2 關閉防火牆 關閉防火牆 如已經關閉則不需要 root localhost systenctl stop firewalld 關閉seli...