CentOS 8にChrony をインストールする方法

環境
OSバージョンを確認します
# cat /etc/redhat-release
CentOS Stream release 8

操作方法
1.Chrony をインストールします

# dnf -y install chrony

2.設定ファイルを修正します
# vi /etc/chrony.conf
3行目
時刻同期する NTP サーバーを変更

#pool 2.centos.pool.ntp.org iburst
pool ntp.nict.jp iburst

24行目  NTP クライアントからの時刻同期リクエストを受け付けるネットワークを追記します

#allow 192.168.0.0/16
allow 10.0.0.0/24

3.Chrony を起動します

# systemctl enable --now chronyd

4.Firewalld を有効にしている場合は、NTP サービスの許可が必要です

# firewall-cmd --add-service=ntp --permanent
success
# firewall-cmd --reload
success

5.動作確認をします
# chronyc sources

CentOS Stream 8

Posted by arkgame