ntp 伺服器是用於區域網伺服器時間同步使用的,可以保證局域
網所有的伺服器與時間伺服器的時間保持一致,某些應用對時間實時
性要求高的必須統一時間。
復旦大學免費ntp:"ntp.fudan.edu.cn
阿里雲免費ntp:"ntp1.aliyun.com
1.本地防火牆開啟123埠
ntp 伺服器監聽埠為 udp 的 123,那就需要在本地防火牆開啟
執行客戶端訪問 123 埠,進入vi /etc/sysconfig/iptables 新增如下規則:
-a input -m state --state new -m udp -p udp --dport 123 -j accept
1.yum安裝ntp
yum install ntp ntpdate -y
2.配置ntp.conf配置檔案
#備份源配置檔案
cp /etc/ntp.conf.bak
driftfile /var/lib/ntp/drift
restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery
restrict 127.0.0.1
restrict -6 ::1
server 127.127.1.0 # local clock
server ntp3.aliyun.com #阿里雲時間伺服器
啟動/關閉/重啟-ntp服務/檢視其狀態
(注意*: ntpd 啟動後,客戶機要等幾分鐘再與其進行時間同步,否
則會提示「no server suitable for synchronization found」錯誤。)
1.安裝ntp服務
yum install ntp ntpdate -y
2.測試
#檢視當前時間
[root@bogon ~]# date
tue oct 8 01:02:05 pdt 2019
#修改機器時間
[root@bogon ~]# date -s "20120523 01:01:01"
wed may 23 01:01:01 pdt 2012
#同步服務端時間
[root@bogon ~]# ntpdate 192.168.150.151
8 oct 00:33:35 ntpdate[21750]: step time server 192.168.150.151 offset 232759902.686916 sec
#再次檢視。。。
3.新增定時任務
#注意:修改192.168.150.151為自己服務端的ip
ntp時間伺服器搭建
我在學習過程中經常遇到伺服器時間不一致導致很多故障,經過了很多次麻煩的經歷之後決定寫出來,以便於自己以後需要再來拿出來用,也希望可以幫到需要的人 yum install y ntp ntpdate備份配置檔案 cp etc ntp.conf etc ntp.conf.bak將注釋掉的去掉,新建配置文...
Ntp時間伺服器搭建
1 服務端配置 yum y install ntp cp etc ntp.conf etc ntp.conf.bak egrep v etc ntp.conf.bak etc ntp.conf vim etc ntp.conf driftfile var lib ntp drift restrict...
NTP時間同步伺服器搭建
搭建hadoop集群需要同步時間。自己瞎鼓搗了半天也沒整好ntp時間伺服器,早晨無意中找到這篇文章果然好使,發現與ntp伺服器的配置檔案有區別 導致ntp客戶端訪問ntp伺服器失敗,這是已經修改後的配置檔案 一 ntp介紹 ntp network time protocol,網路時間協議 是用來使網...