ntp伺服器時間同步

2021-10-07 21:57:25 字數 1203 閱讀 3572

ntp時間同步

首先檢視是否安裝了ntp

rpm -q ntp
如果安裝會顯示ntpdate-4.2.6p5-1.el6.x86_64

未安裝則安裝ntp

yum -y install ntp
或者

rpm -ivh --nodeps ntpdate-4.2.6p5-25.e17.centos.2.x86_64.rpm autogen-libopts-5.18-5.e17.x86_64.rpm ntp-4.2.6p5-25.e17.centos.2.x86_64.rpm
安裝完成執行vi /etc/ntp.conf

配置檔案格式如下,注釋掉四行server,並在下面新增一行server。

# grep ^[^#] /etc/ntp.conf  

driftfile /

var/lib/ntp/drift

restrict default nomodify notrap nopeer noquery

restrict 127.0.0.1

restrict ::1

#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 114.2.131.26 ip為ntp伺服器ip位址

includefile /etc/ntp/crypto/pw

keys /etc/ntp/keys

disable monitor

重啟

systemctl restart ntpd.service
第一次手動更新時間

ntpdate -u 114.2.131.26(ntp伺服器ip)
配置開機自啟動

chkconfig ntpd on
檢視ntp主節點是否正確

watch ntpq -p
第一列即為ntp伺服器的ip。

時間同步伺服器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...