Centos7 基礎服務之NTP時間服務

2021-10-25 06:13:49 字數 1992 閱讀 5207

ntp伺服器,network time protoc作用:為網路中的主機授時,同步的時間在2min-10min,需要看主機板上面的硬體的效能

ntp-server和ntp-client完成初始化

兩台機器:完成初始化

clinet:跟伺服器進行時間同步,臨時修改主機名ntp-clinet,重啟生效

關掉終端重新開啟乙個終端就可以立刻生效

server:時間伺服器,臨時修改主機名為ntp-server

1、所有機器關閉防火牆和selinux

systemctl stop firewalld

systemctl disable firewalld

setenforce 0 (臨時關閉selinux)  

[root@qf-xingdian ~]# getenforce (檢視selinux)

disabled

擴充套件:永久關閉selinux

vim /etc/selinux/config

selinux=disabled

第二種方法永久關閉selinux

sed -i 『/^selinux=/c selinux=disabled』 /etc/selinux/config

修改時間伺服器主機名

[root@htp-server ~]# hostnamectl set-hostname ntp-client

查詢ntp是否安裝

[root@htp-server ~]# rpm -qa |grep ntp

查詢到繼續操作 ntp-4.2.4p8-3.el6.x86_64

查詢不到就安裝一下

[root@htp-server ~]# yum -y install ntp

ntp server配置示例:

server 127.127.1.0代表的是本地時間伺服器

[root@htp-server ~]# vim /etc/ntp.conf //配置檔案全部刪掉,只要下面三行

restrict default nomodify   //不允許客戶端登入,也不允許客戶端修改

server 127.127.1.0 //使用本地的bios時間,自己跟自己同步

fudge 127.127.1.0 stratum 10 //定義級別,範圍0-16,越小越精準

配置檔案儲存退出,ntp服務重啟

[root@htp-server ~]# systemctl start ntpd

[root@htp-server ~]# systemctl enable ntpd

restrict 英 [rɪˈstrɪkt] 美 [rɪˈstrɪkt] v.限制

fudge 英 [fʌdʒ] 美 [fʌdʒ] v.含糊其辭;迴避

stratum 英 [ˈstrɑːtəm] 美 [ˈstreɪtəm] n.層

date -s 9:00 伺服器修改時間,客戶機不能同步時間(手動修改時間,會造成和本地bios時間不同步),可以先將伺服器與網路上ntp伺服器同步時間,這時需要把伺服器的ntp服務stop,時間同步後再start。客戶機即可以同步時間

客戶端需要ntpdate命令

[root@ntp-client ~]# hostnamectl set-hostname ntp-client

[root@ntp-client ~]# yum -y install ntpdate

[root@ntp-client ~]# ntpdate -b 10.11.67.31  //手動時間同步 -b加速初始化同步

26 oct 13:05:03 ntpdate[11959]: step time server 10.11.67.31 offset 4291084.254062 sec

可以制定計畫任務定時執行時間同步

crontab -e 建立乙個計畫任務

00 00 * * * ntpdate -b 172.16.110.1 每隔一天自動時間同步

客戶機和伺服器也可以和網路上的ntp伺服器同步時間

centos7安裝ntp服務

安裝ntp服務 查詢是否安裝了ntp rpm qa grep ntp yum install y ntp 修改所有節點的ntp.conf vi etc ntp.conf 新增以下內容 當前節點ip位址 restrict 10.0.32.20 nomodify notrap nopeer noquer...

Centos7 配置NTP服務

一 安裝 安裝 yum y install chrony二 配置 修改配置檔案 vi etc chrony.conf修改 etc chrony.conf 以下內容 server ntp1.aliyun.com server ntp2.aliyun.com server time1.cloud.ten...

centos 7 安裝NTP服務

1.兩台伺服器 139 server端 140 client端 2.server端 2.1 yum安裝 yum install ntp ntpdate 2.2 編輯配置檔案 vim etc ntp.conf server 0.centos.pool.ntp.org iburst server 1.c...