ntp服務端:
1. 安裝ntp服務
rpm -qa|grep ntp #檢視是否安裝ntp,以下為已安裝
yum -y install ntp ntpdate #安裝命令
2. 查詢當前地區最適合的時間伺服器
注:本章使用aliyun時間伺服器
ntp1.aliyun.com
ntp2.aliyun.com
ntp3.aliyun.com
ntp4.aliyun.com
3.驗證ntp服務是否開啟
server 127.127.1.0 iburst #作為服務端配置這條即可
5. 啟動ntp服務
systemctl start ntpd.service
systemctl enable ntpd.service
6.配置伺服器時間
date #系統時間
date -s "2019-12-06 09:59:00"
hwclock #硬體時間
hwclock --set --date "2019-12-06 09:59:30"
ntp客戶端:
1. 安裝ntp服務
rpm -qa|grep ntp
yum -y install ntp ntpdate
2. 設定ntp.conf
# hosts on local network are less restricted.
#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap
restrict 192.168.0.60 nomodify notrap noquery
# use public servers from the pool.ntp.org project.
# please consider joining the pool (
#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 192.168.0.60
3.同步ntp服務時間
ntpdate -u 192.168.0.60
ntpdate引數介紹:
-q query only - don』t set the clock.
-s divert logging output from the standard output (default) to the system syslog facility. this is
designed primarily for convenience of cron scripts.
-u direct ntpdate to use an unprivileged port for outgoing packets. this is most useful when behind a
firewall that blocks incoming traffic to privileged ports, and you want to synchronize with hosts
beyond the firewall. note that the -d option always uses unprivileged ports.
4. 建立同步時間定時任務
crontab -e
0 * * * * /usr/sbin/ntpdate -u 192.168.0.60 #每小時同步
crontab -l
5.驗證時間服務
6.centos6/7開啟ntp服務
centos6:
service ntpd start
chkconfig ntpd on
centos7:
systemctl start ntpd.service
systemctl enable ntpd.service
NTP伺服器配置
ntp簡介 network time protocol 網路時間協議,是用來使計算機時間同步化的一種些以,他可以使計算機對其伺服器或時鐘源做同步化,它可以提供高精準的時間校正 lan上與標準時差小於1毫秒,wan上幾十毫秒 且可介由加密確認的方式來防止惡意的協議攻擊.c s模式 可去授時中心伺服器獲...
Centos7配置ntp時間伺服器
centos7配置時間伺服器,假如配置乙個服務端,n個客戶端 服務端 1 安裝ntp服務 yum install ntp ntpdate y 2 查詢當前地區,最適合的時間伺服器 步驟一 開啟 7 建立job,每天定時自動同步遠端服務 crontab e 00 01 root usr sbin nt...
ubuntu配置ntp伺服器
安裝命令 sudo apt get ntp 我電腦安裝完出錯 解決辦法 配置 原文 etc ntp.conf,configuration for ntpd see ntp.conf 5 for help driftfile var lib ntp ntp.drift 草稿檔案 日誌檔案 statsd...