您好,登錄后才能下訂單哦!
centos6.8 配置服務器NTP服務
先查看是否安裝NTP
rpm -qa|grep ntp
如果沒有安裝則安裝
yum –y install ntp
設置東八區時區為當前時區
rm -rf /etc/localtime
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
手動同步下網絡時間
ntpdate -u cn.pool.ntp.org
安裝后進行配置
vi /etc/ntp.conf
//添加如下配置內容
//默認允許任何主機進行時間同步
restrict default ignore
//中國這邊最活躍的時間服務器
server cn.pool.ntp.org perfer # 中國國家受時中心
server 0.cn.pool.ntp.org # 1.cn.pool.ntp.org
server 1.cn.pool.ntp.org
server asia.pool.ntp.org
server 0.asia.pool.ntp.org
server1.asia.pool.ntp.org
//允許上層時間服務器主動修改本機時間
restrict cn.pool.ntp.org nomodify notrap noquery
restrict 0.cn.pool.ntp.org nomodify notrap noquery
restrict 1.cn.pool.ntp.org nomodify notrap noquery
restrict asia.pool.ntp.org nomodify notrap noquery
restrict 0.asia.pool.ntp.org nomodify notrap noquery
restrict 1.asia.pool.ntp.org nomodify notrap noquery
//外部時間服務器不可用時,以本地時間作為時間服務
server 127.127.1.0 # local clock
fudge 127.127.1.0stratum 10
設置ntp為自啟動項
chkconfig ntpd on
查看啟動項2、3、4、5是否打開
chkconfig --list ntpd
啟動NTP服務
/etc/init.d/ntpd restart
查看服務和監聽,看紅色標注的地方,表示當前ip連接和監聽已正確
netstat -tlunp | grep ntp
查看NTPD服務情況,要等5-10分鐘后再查
//1查看時間同步狀態。啟動后,一般需要5-10分鐘左右的時候才能與外部時間服務器開始同步時間。可以通過命令查詢NTPD服務情況
ntpstat
//2查看網絡中的NTP服務器,同時顯示客戶端和每個服務器的關系
ntpq –p
//出現了紅框中local,說明本地時鐘源配置成功
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。