centos8不在直接使用ntp,而是使用chrony作為時間同步,chrony既可以當伺服器端廣播時間,又可以作為客戶端同步時間
安裝
sudo dnf install chrony -y
sudo yum install chrony -y
centos8使用firewalld服務對防火牆進行管理。放行ntp服務(123/udp)
firewall-cmd --add-service=ntp --permanent && firewall-cmd --reload
作為伺服器端配置chrony服務端
sudo vim /etc/chrony.conf
刪除配置自帶的ntp伺服器。換成國內阿里雲的ntp伺服器位址。linux就該這麼學
新增上游ntp伺服器
server time1.aliyun.com iburst
server time2.aliyun.com iburst
server time3.aliyun.com iburst
允許 192.168.1.0/24 內的客戶端通過這台伺服器獲取時間
allow 192.168.1.0/24
配置無誤後,重啟chrony服務,並配置開機自啟動:
systemctl restart chronyd.service
systemctl enable chronyd.service
使用ss -tlunp | grep chrony或者 lsof -i:123命令檢查chrony服務使用的123/udp埠是否啟動成功
作為客戶端
同樣安裝,然後修改客戶端chrony配置檔案
sudo vim /etc/chrony.conf
# use public servers from the pool.ntp.org project.
# please consider joining the pool (
# pool 2.centos.pool.ntp.org iburst
#新增ntp伺服器
server time1.aliyun.com iburst
server time2.aliyun.com iburst
server time3.aliyun.com iburst
如果有自建的chrony客戶端也可以自行配置
server 192.168.1.30 iburst
重啟chrony客戶端服務,重啟chrony服務,並配置開機自啟動:
systemctl restart chronyd.service && systemctl enable chronyd.service --now
檢視同步狀態
chronyc sources -v
CentOS8使用國內源
先說結論,以阿里雲為例,複製以下 執行即可 mv etc yum.repos.d centos base.repo etc yum.repos.d centos base.repo.backup mv etc yum.repos.d centos extras.repo etc yum.repos....
centos 8 安裝使用配置
yum install nfs utils nfs utils lib y 如果出現上述錯誤請安裝lvm2 yum install y lvm2 vim etc exports 加入 如 home insecure,rw,sync,no root squash 引數詳解 ro 唯讀共享 rw 讀寫共...
centos8 使用yum 安裝 mongodb
cat eof etc yum.repos.d mongodb org 4.2.repo mongodb org 4.2 name mongodb repository baseurl gpgcheck 1 enabled 1 gpgkey eofbaseurl 安裝失敗,嘗試把位址寫死為7,安裝基...