欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

centos7安裝chronyd服務方式

 更新時間:2023年06月02日 09:45:17   作者:奈小奈  
這篇文章主要介紹了centos7安裝chronyd服務方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教

centos7安裝chronyd服務

一、雙節(jié)點部署:

ip主機名
192.168.100.10controller
192.168.100.20compute

二、配置時間同步

1、雙節(jié)點安裝chrony服務(這里是使用本地的軟件包進行yum安裝)

[root@controller ~]# yum install -y chrony
[root@compute ~]# yum install -y chrony

2、controller修改chrony服務配置文件(在/etc/chrony.conf目錄下)

[root@controller ~]# vi /etc/chrony.conf 
# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
#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 controller iburst                      //添加這一行
# Record the rate at which the system clock gains/losses time.
driftfile /var/lib/chrony/drift
# Allow the system clock to be stepped in the first three updates
# if its offset is larger than 1 second.
makestep 1.0 3
# Enable kernel synchronization of the real-time clock (RTC).
rtcsync
# Enable hardware timestamping on all interfaces that support it.
#hwtimestamp *
# Increase the minimum number of selectable sources required to adjust
# the system clock.
#minsources 2
# Allow NTP client access from local network.
allow all                              //去掉#號
# Serve time even if not synchronized to a time source.
local stratum 10                       //去掉#號
# Specify file containing keys for NTP authentication.
#keyfile /etc/chrony.keys
# Specify directory for log files.
logdir /var/log/chrony
# Select which information is logged.
#log measurements statistics tracking

3、compute 修改chrony配置文件

[root@compute ~]# vi /etc/chrony.conf 
# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
#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 192.168.100.10 iburst                   //添加這一行
# Record the rate at which the system clock gains/losses time.
driftfile /var/lib/chrony/drift
# Allow the system clock to be stepped in the first three updates
# if its offset is larger than 1 second.
makestep 1.0 3
# Enable kernel synchronization of the real-time clock (RTC).
rtcsync
# Enable hardware timestamping on all interfaces that support it.
#hwtimestamp *
# Increase the minimum number of selectable sources required to adjust
# the system clock.
#minsources 2
# Allow NTP client access from local network.
#allow 192.168.0.0/16
# Serve time even if not synchronized to a time source.
#local stratum 10
# Specify file containing keys for NTP authentication.
#keyfile /etc/chrony.keys
# Specify directory for log files.
logdir /var/log/chrony
# Select which information is logged.
#log measurements statistics tracking

4、雙節(jié)點重啟服務,并設置開機自啟

[root@controller ~]# systemctl restart chronyd && systemctl enable chronyd
[root@compute ~]# systemctl restart chronyd && systemctl enable chronyd

5、controller開啟ntp同步

[root@controller ~]# timedatectl set-ntp true

6、雙節(jié)點執(zhí)行chronyc sources命令,結(jié)果中存在以^*開頭的行,則同步成功

[root@controller ~]# chronyc sources
210 Number of sources = 1
MS Name/IP address         Stratum Poll Reach LastRx Last sample               
===============================================================================
^* controller                   10   6   377    27   +186ns[-8404ns] +/-   17us
[root@compute ~]# chronyc sources
210 Number of sources = 1
MS Name/IP address         Stratum Poll Reach LastRx Last sample               
===============================================================================
^* controller                   10   6    17    34  -4280ns[  -13us] +/-  328us

Centos7使用chronyd進行時鐘同步

最近要做阿里云遷移 IDC 機房,整理下 Linux 運維基線,簡單記錄,以備后用~

安裝

# 默認已經(jīng)安裝
$ yum install -y chrony

配置文件

$ cat /etc/chrony.conf
# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
# 國家服務器
server 0.cn.pool.ntp.org
server 1.cn.pool.ntp.org
server 2.cn.pool.ntp.org
server 3.cn.pool.ntp.org
# 阿里
server ntp.aliyun.com
# 騰訊
server time1.cloud.tencent.com
server time2.cloud.tencent.com
server time3.cloud.tencent.com
server time4.cloud.tencent.com
server time5.cloud.tencent.com
# 蘋果
server time.asia.apple.com
# 微軟
server time.windows.com
# 其他
server cn.ntp.org.cn
# Record the rate at which the system clock gains/losses time.
driftfile /var/lib/chrony/drift
# Allow the system clock to be stepped in the first three updates
# if its offset is larger than 1 second.
makestep 1.0 3
# Enable kernel synchronization of the real-time clock (RTC).
rtcsync
# Enable hardware timestamping on all interfaces that support it.
#hwtimestamp *
# Increase the minimum number of selectable sources required to adjust
# the system clock.
#minsources 2
# Allow NTP client access from local network.
#allow 192.168.0.0/16
# Serve time even if not synchronized to a time source.
#local stratum 10
# Specify file containing keys for NTP authentication.
#keyfile /etc/chrony.keys
# Specify directory for log files.
logdir /var/log/chrony
# Select which information is logged.
#log measurements statistics tracking

啟動服務及時區(qū)設置

# 啟動服務
$ systemctl start chronyd
# 開機啟動
$ systemctl enable chronyd
# 查看當前狀態(tài)
$ systemctl status chronyd
# 查看亞洲時區(qū)
$ timedatectl list-timezones | grep Asia
# 設置時區(qū)
$ timedatectl set-timezone Asia/Shanghai

驗證服務

# 查看現(xiàn)有的時間服務器
$ chronyc sources -v
# 查看時間服務器狀態(tài)
$ chronyc sourcestats -v
# 顯示時鐘同步相關(guān)參數(shù)
$ chronyc tracking
# 查看當前時區(qū)及時間
$ timedatectl?

手動同步時間

# 使用 ntpdate 同步時間
$ ntpdate ntp.aliyun.com
# chronyd 未啟動時,如下命令同步時間
$ chronyd -q 'server pool.ntp.org iburst'
# chronyd 啟動時,使用如下命令同步時間
$ chronyc -a 'burst 4/4' && sleep 10 && chronyc -a makestep

手動設置時間

# date 設置時間
$ date -s '2021-06-03 19:00:00'
# 關(guān)閉 ntp 同步后,才可以使用 timedatectl 進行時間設置
$ timedatectl set-ntp false
# 設置日期和時間
$ timedatectl set-time '2021-06-03 19:00:00'
# 設置日期
$ timedatectl set-time '2021-06-03'
# 設置時間
$ timedatectl set-time '19:00:00'
# 設置完成后,再開啟
$ timedatectl set-ntp true

總結(jié)

以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。

相關(guān)文章

  • Linux配置和使用i3窗口管理器的教程

    Linux配置和使用i3窗口管理器的教程

    今天小編就為大家分享一篇關(guān)于Linux配置和使用i3窗口管理器的教程,小編覺得內(nèi)容挺不錯的,現(xiàn)在分享給大家,具有很好的參考價值,需要的朋友一起跟隨小編來看看吧
    2018-10-10
  • 簡單了解linux終端創(chuàng)建文件的2種常用方法

    簡單了解linux終端創(chuàng)建文件的2種常用方法

    這篇文章主要介紹了簡單了解linux終端創(chuàng)建文件的2種常用方法,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
    2020-06-06
  • CentOS桌面環(huán)境中網(wǎng)卡啟動失敗的解決方法

    CentOS桌面環(huán)境中網(wǎng)卡啟動失敗的解決方法

    這篇文章主要為大家詳細介紹了CentOS桌面環(huán)境中網(wǎng)卡啟動失敗的解決方法,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-11-11
  • Linux版本選擇攻略:一步到位

    Linux版本選擇攻略:一步到位

    Linux版本選擇困擾你嗎?不知道哪個版本最適合你的需求?別擔心,我們的《Linux版本選擇攻略:一步到位》將為你解答所有疑惑,
    2024-01-01
  • LINUX中詳解AWK內(nèi)建變量FS,NF,NR,RT,RS,ORS,OFS

    LINUX中詳解AWK內(nèi)建變量FS,NF,NR,RT,RS,ORS,OFS

    很多朋友沒搞告白AWK內(nèi)建變量FS,NF,NR,RT,RS,ORS,OFS的方法和原理,小編給大家總結(jié)了詳細的內(nèi)容,一起來學習下思路。
    2017-11-11
  • Linux服務器如何查看每個用戶或者當前用戶的磁盤占用量及文件同步

    Linux服務器如何查看每個用戶或者當前用戶的磁盤占用量及文件同步

    這篇文章主要介紹了Linux服務器如何查看每個用戶或者當前用戶的磁盤占用量及文件同步問題,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教
    2024-02-02
  • 解析Linux源碼之epoll

    解析Linux源碼之epoll

    本文在探究epoll源碼過程中,對kernel將就緒描述符添加到epoll并喚醒對應進程的一次源碼分析(基于linux-2.6.32內(nèi)核版本)。由于篇幅所限,著重聚焦于tcp協(xié)議下socket可讀事件的源碼分析
    2021-06-06
  • 利用Apache服務器屏蔽廣告及IP段的一般方法

    利用Apache服務器屏蔽廣告及IP段的一般方法

    這篇文章主要介紹了利用Apache服務器屏蔽廣告及IP段的一般方法,同時也介紹了設置僅允許訪問的IP段從而屏蔽其他一切IP的方法,需要的朋友可以參考下
    2015-11-11
  • Apache 二級域名實現(xiàn)方法介紹

    Apache 二級域名實現(xiàn)方法介紹

    首先,你的擁有一個有泛域名解析的頂級域名,例如:domain.com
    2009-05-05
  • 虛擬機中centos修改時間的方法

    虛擬機中centos修改時間的方法

    今天小編就為大家分享一篇關(guān)于虛擬機中centos修改時間的方法,小編覺得內(nèi)容挺不錯的,現(xiàn)在分享給大家,具有很好的參考價值,需要的朋友一起跟隨小編來看看吧
    2018-12-12

最新評論