Linux部署ntp時間伺服器

2021-10-01 23:21:04 字數 858 閱讀 8050

yum -y install ntp
vim /etc/ntp.conf

restrict 172.16.1.61 nomodify notrap nopeer noquery //當前節點ip位址

restrict 172.16.1.1 mask 255.255.255.0 nomodify notrap //集群所在網段的閘道器,子網掩碼

# 在server部分新增以下部分,並注釋掉server

server 127.127.1.0

fudge 127.127.1.0 stratum 10

vim /etc/ntp.conf

restrict 172.16.1.7 nomodify notrap nopeer noquery //當前節點ip位址

restrict 172.16.1.1 mask 255.255.255.0 nomodify notrap //集群所在網段的閘道器,子網掩碼

在server部分新增如下語句,將server指向主節點。

server 172.16.1.61

fudge 172.16.1.61 stratum 10

service ntpd start

chkconfig ntpd on

ntpdate -u 192.168.0.101
crontab -e

* * * * * ntpdate -u 192.168.0.101 (星代表,分時日月周)

Linux服務部署之NTP時間伺服器

linux服務部署之ntp時間伺服器 1 原理 ntp network timeprotocol,網路時間協議 是用來使計算機時間同步的一種協議。它可以使計算機對其伺服器或時鐘源做同步化,它可以提供高精準度的時間校正 lan上與標準間差小於1毫秒,wan上幾十毫秒 切可介由加密確認的方式來防止惡意的...

NTP時間伺服器搭建部署

一 ntp介紹 ntp network time protocol,網路時間協議 是用來使網路中的各個計算機時間同步的一種協議。它的用途是把計算機的時鐘同步到世界協調時utc,其精度在區域網內可達0.1ms,在網際網路上絕大多數的地方其精度可以達到1 50ms。ntp伺服器就是利用ntp協議提供時間...

ntp時間伺服器

兩台虛擬機器 192.168.30.139 服務端 192.168.30.143 客戶端1 安裝ntp 服務 192.168.30.139 root hadoop1 opt yum install y ntp 192.168.30.143 root hadoop2 opt yum install y...