rhel7時間伺服器chrony

2021-08-19 15:06:25 字數 1456 閱讀 1363

rhel7中預設使用chrony作為時間伺服器,也支援ntp,需要額外安裝。

ntp與chrony不能同時存在,只能用其中乙個,並將另乙個mask掉

實驗-設定本地時間伺服器

在qin1上

vim /etc/chrony.conf

#server 0.rhel.pool.ntp.org iburst

#注釋掉

#server 1.rhel.pool.ntp.org iburst

#注釋掉

#server 2.rhel.pool.ntp.org iburst

#注釋掉

#server 3.rhel.pool.ntp.org iburst

#注釋掉

local stratum 10

#取消注釋

allow 192.168.100.0/24

systemctl restart chronyd.service

#chrony不與本地時間同步之前無法對外提供服務,有時需等待幾分鐘

在qin2上

vim /etc/chrony.conf

#server 0.rhel.pool.ntp.org iburst

#注釋掉

#server 1.rhel.pool.ntp.org iburst

#注釋掉

#server 2.rhel.pool.ntp.org iburst

#注釋掉

server 192.168.100.1 iburst

#修改systemctl restart chronyd.service

timedatectl

#ntp synchronized顯示為yes說明同步成功

chronyc sources -v

#檢視時間同步源

chronyc sourcestats -v

#檢視時間同步源狀態

timedatectl list-timezones

#列出時區

timedatectl set-timezone asia/shanghai

#設定時區

timedatectl set-time "2015-01-21 11:50:00"

timedatectl set-time "2015-01-21"

timedatectl set-time "11:50:00"

ntpdate 192.168.100.1

相容ntp類的命令

date

date -s "2015-01-21 11:50:00"

date -s "2015-01-21"

date -s "11:50:00"

ntpdate 192.168.100.1

#與192.168.100.1同步

hwclock -s

#從主機板時間同步

hwclock -w

#將系統時間寫入主機板時間

RHEL7構建Rsync資料同步伺服器

rsync remote sync 是unix及類unix平台下一款神奇的資料映象備份軟體,它不像ftp或其他檔案傳輸服務那樣需要進行全備份,rsync可以根據資料的變化進行差異備份,從而減少資料流量,提高工作效率。你可以使用它進行本地資料或遠端資料的複製,rsync可以使用ssh安全隧道進行加密資...

RHEL 7特性說明(九) Web伺服器和相關服務

red hat enterprise linux 7.0 是 red hat 的下一代作業系統完整套件,旨在用於關鍵任務企業級計算以及頂級企業級軟體和硬體零售商認證。red hat enterprise linux 7.0 中包含的 apache http 伺服器版本 2.4 httpd 包含下列新...

伺服器間同步時間

1 解壓軟體包,並切換到解壓目錄 tar zxvf ntp 4.2.0.tar.gz c usr local src cd usr local src ntp 4.2.0 2.開始設定引數 編譯與安裝 configure prefix usr local ntp enable all clocks ...