配置ntp服務

2021-06-04 11:25:35 字數 637 閱讀 1267

客戶端

一    在/etc/crontab

* */2 * * *    /etc/ntp.sh     # 每兩個小時校對一次時間

二    在/etc/ntp.sh中新增

#!/bin/bash

ntpdate  172.19.61.110

改變/etc/ntp.sh的許可權 chmod 700 /etc/ntp.sh

三     /etc/init.d/fcron  restart  重啟cron服務

伺服器端 

一     搭建ntp伺服器(172.19.61.110),配置檔案/etc/ntp.conf

server  210.72.145.44    //國家授時中心的ip位址

server 127.0.0.1     //如果前面的ip連線不上,以本機做為時間源                                 

restrict  172.19.61.0 mask 255.255.255.0  nomodify    

driftfile /var/lib/ntp/drift     //記錄本機與上層伺服器的頻率,並將兩者頻率的誤差記錄下來

二     關閉防火牆  service iptables stop

NTP服務配置

寫於2013年秋,centos6.4 伺服器端 hadoop master1 sudo chkconfig ntpd on hadoop master sudo vi etc ntp.conf server 127.127.1.0 local clock fudge 127.127.1.0 stra...

NTP服務配置

ntp時間同步服務 安裝 1 yum y install ntp 2 service ntpd start 檢視同步詳情 ntpq p 引數 含義 remote 本地機器所連線的遠端ntp伺服器 refid 給遠端伺服器提供時間同步的伺服器 st遠端伺服器的層級別 1 16 避免 1t未知 when...

NTP服務配置

利用 restrict 來管理許可權控制 在 ntp.conf 檔案內可以利用 restrict 來控管許可權,這個引數的設定方式為 restrict 你的ip mask netmask ip parameter 其中 parameter 的引數主要有底下這些 那如果你沒有在 parameter 的...