1.1 ntp 簡介
ntp( network time protocol,網路時間協議)是用來使網路中的各個計算機時間同步的一種協
議。它的用途是把計算機的時鐘同步到世界協調時 utc,其精度在區域網內可達 0.1ms,在互聯
網上絕大多數的地方其精度可以達到 1-50ms。
ntp 伺服器就是利用 ntp 協議提供時間同步服務的。
ntp服務端: c701 10.0.0.41
ntp客戶端: c702 10.0.0.42
yum -y install ntp
vim /etc/ntp.conf
# restrict default kod nomodify notrap nopeer noquery
# nomodify客戶端可以同步
restrict default nomodify
# 將預設時間同步源注釋改用可用源
# 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
server ntp1.aliyun.com
systemctl restart ntpd
systemctl enable ntpd
[root@ c702 yum.repos.d]
# systemctl stop ntpd
[root@ c702 yum.repos.d]
# ntpdate 10.0.0.41
6 nov 18:36:39 ntpdate[2151]: adjust time server 10.0.0.41 offset -0.019067 sec
注意:此處需要等待服務端幾分鐘。
新增到定時任務
cat
>>/var/spool/cron/root<<
eof#crond m01
*/5 * * * * /usr/sbin/ntpdate 10.0.0.41 >/dev/null 2>&1
eof
時間同步伺服器NTP
前言 伺服器的時間同步操作,是每台伺服器應該配置的核心功能之一。不管是單機的定時任務,還是大規模的集群服務,都需要有乙個統計的時間基準,才能保證程式的正常執行。作業系統有三大時間,系統時間date,bios時間hwclock,ntp伺服器時間ntpdate。當作業系統重啟的時候,系統會從bios讀取...
NTP伺服器時間同步
1.ntp伺服器時間同步 vi etc ntp.conf restrict 127.0.0.1 restrict 6 1 restrict 10.1.4.1 30mask 255.255.255.0 nomodify notrap server 127.127.1.0 local clock fud...
ntp 時間同步伺服器
2019獨角獸企業重金招聘python工程師標準 客戶端首先安裝ntp yum install ntp shell ntpdate 95.222.122.210 shell ntpdate 202.112.10.60 shell ntpdate 192.93.2.20 注意 客戶端同步時間時出現 n...