NTP伺服器搭建

2021-09-13 01:23:47 字數 1277 閱讀 2536

ntpd服務安裝

[root@hps-1 custom]# yum install -y ntp

如果安裝失敗存在如下衝突:

請先解除安裝系統自帶ntpdate,重新再執行安裝即可:

[root@rqh-test-01 yum.repos.d]# yum remove ntpdate -y

[root@hps-1 custom]# yum install -y ntp

修改配置檔案,新增並確保以下內容未被注釋即可

[root@hps-1 custom]# grep -v ^# /etc/ntp.conf |grep -v ^$

[root@hps-1 custom]# vim /etc/ntp.conf

driftfile /var/lib/ntp/drift

restrict default nomodify notrap nopeer noquery

restrict 127.0.0.1

restrict ::1

restrict 10.1.245.0 mask 255.255.255.0 nomodify notrap

server 127.127.1.0

fudge 127.127.1.0 stratum 8

includefile /etc/ntp/crypto/pw

keys /etc/ntp/keys

disable monitor

注意:紅色加粗部分,需要修改為ntp伺服器網段位址、子網掩碼。

設定隨機啟動並啟動ntp服務

[root@hps-1 ~]# systemctl enable ntpd

[root@hps-1 ~]# systemctl start ntpd

[root@hps-1 ~]# systemctl status ntpd

驗證:

在已經安裝ntpdate服務的其他伺服器(假設ntp伺服器ip為10.1.245.105)上執行:

[root@hps-2 ~]#ntpdate 10.1.245.105

結果類似如下內容表明同步成功。

注:由於ntp server自身或與其他ntp server的同步大概需要5分鐘左右,因此請在ntp服務啟動五分鐘後執行以上驗證操作。

如果其他伺服器上的時間與ntp server上的相差很大的話,必須先手動在其他伺服器上修改時間後才能同步成功。修改方法為:

[root@hps-1 ~]# date -s 「yyyy-mm-dd hh:mm:ss」

[root@hps-1 ~]# hwclock -w

搭建NTP 伺服器

一 用centos 6.0來搭建ntp伺服器 先只說步驟不說原理,搭建的過程都是在vmware下完成的,我的元件步驟是 1 先安裝好系統,然後開始檢視系統有沒有安裝ntp伺服器元件,用 rmp qa grep ntp 命令來檢視,結果中包 含 ntp 4.2 什麼什麼,說明 ntp 軟體已經裝好了,...

搭建NTP伺服器

搭建ntp伺服器 1 使用chrony搭建ntp伺服器 本章節介紹利用centos 7.x chrony搭建ntp伺服器 centos 7.x為最小化安裝且關閉selinux和防火牆,網絡卡位址為192.168.0.10 24 1.1 安裝chrony軟體 在ntp伺服器和客戶端上安裝chrony軟...

ntp伺服器搭建

ntp就是使一台或多台伺服器 客戶端 與時間伺服器 服務端 之間進行時間同步 即客戶端與服務端的時間同步 以保證時間的統一性。root bogon yum y install ntp 安裝ntp服務 root bogon vim etc ntp.conf 編輯ntp配置檔案 加入以下三行 restr...