服務端操作
1.yum -y install ntp ntpdate #安裝ntp
2.vim /etc/ntp.conf #修改配置檔案 直接複製上去 ip和網段換成自己的
ftfile /var/lib/ntp/drift
restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery
restrict 192.168.181.182
restrict -6 ::1
#允許內網其他機器同步時間
restrict 192.168.181.0 mask 255.255.255.0 nomodify notr
#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
#定義使用的上游 ntp伺服器,將原來的注釋
server ntp1.aliyun.com
server time1.aliyun.com
#允許上層時間伺服器主動修改本機時間
restrict time1.aliyun.com nomodify notrap noquery
restrict ntp1.aliyun.com nomodify notrap noquery
#外部時間伺服器不可用時,以本地時間作為時間服務
server 127.127.1.0
fudge 127.127.1.0 stratum 10
includefile /etc/ntp/crypto/pw
keys /etc/ntp/keys
3.systemctl start ntpd #啟動ntp
4.ntpq -p #測試
客戶端測試
1.yum -y install ntp ntpdate #安裝ntp
2.date -s 1111 #隨意修改時間
3.ntpdate 192.168.181.182 #同步測試
Linux環境下使用 ntp 實現時間同步
最近發現之前寫的 virtualbox下虛擬機器與宿主機時間同步 也不能實時保證虛擬機器的時間與宿主機實際時間保持一致,索性直接搭一下 ntp 服務來實現時間同步.ntp network time protocol,是基於網路實現時間同步的協議.ntp 的實現,需要 ntp服務端 與 ntp客戶端....
centOS實現時間同步
在使用centos系統的時候,我們可能會遇到時間不准的問題,那我們如何解決這個我問題呢,下面就來教大家乙個centos系統時間同步的方法,希望大家可以解決自己所存在的疑問。本人也經過一段時間的測試以及應用才得到一套比較實用的方法,這裡分享給大家。centos系統時間同步的步驟如下 新裝的centos...
CentOS集群實現時間同步
設定時間同步 集群內節點時間相差太大的話,會導致集群服務異常,所以需要保證集群內各節點時間一致。使用如下命令使各節點時間一致 需要保證集群內的所有節點都能夠連線外網 ntpdate u ntp.sjtu.edu.cnyum install y ntpdate建議把這個同步時間的操作寫到linux的c...