centos6.8 配置服務(wù)器NTP服務(wù)
樟樹ssl適用于網(wǎng)站、小程序/APP、API接口等需要進行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯(lián)建站的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18982081108(備注:SSL證書合作)期待與您的合作!
先查看是否安裝NTP
rpm -qa|grep ntp
如果沒有安裝則安裝
yum –y install ntp
設(shè)置東八區(qū)時區(qū)為當(dāng)前時區(qū)
rm -rf /etc/localtime
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
手動同步下網(wǎng)絡(luò)時間
ntpdate -u cn.pool.ntp.org
安裝后進行配置
vi /etc/ntp.conf
//添加如下配置內(nèi)容
//默認允許任何主機進行時間同步
restrict default ignore
//中國這邊最活躍的時間服務(wù)器
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
//允許上層時間服務(wù)器主動修改本機時間
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
//外部時間服務(wù)器不可用時,以本地時間作為時間服務(wù)
server 127.127.1.0 # local clock
fudge 127.127.1.0stratum 10
設(shè)置ntp為自啟動項
chkconfig ntpd on
查看啟動項2、3、4、5是否打開
chkconfig --list ntpd
啟動NTP服務(wù)
/etc/init.d/ntpd restart
查看服務(wù)和監(jiān)聽,看紅色標(biāo)注的地方,表示當(dāng)前ip連接和監(jiān)聽已正確
netstat -tlunp | grep ntp
查看NTPD服務(wù)情況,要等5-10分鐘后再查
//1查看時間同步狀態(tài)。啟動后,一般需要5-10分鐘左右的時候才能與外部時間服務(wù)器開始同步時間??梢酝ㄟ^命令查詢NTPD服務(wù)情況
ntpstat
//2查看網(wǎng)絡(luò)中的NTP服務(wù)器,同時顯示客戶端和每個服務(wù)器的關(guān)系
ntpq –p
//出現(xiàn)了紅框中l(wèi)ocal,說明本地時鐘源配置成功