AlmaLinux9 NTPサーバーchronyをインストールする方法

環境
AlmaLinux9

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

# dnf -y install chrony

2.Chrony の設定を行います
# vi /etc/chrony.conf
3行目 : 時刻同期する NTP サーバーを変更

修正前

pool 2.almalinux.pool.ntp.org iburst

修正後

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

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

allow 10.0.0.0/24

3.chronydを再起動する

# systemctl enable --now chronyd

4. Firewalld を有効にしている場合は、NTP サービスの許可が必要です。NTP は [123/UDP] を使用します。

# firewall-cmd --add-service=ntp
success
# firewall-cmd --runtime-to-permanent
success

5.動作確認を行います

# chronyc sources

 

AlmaLinux 9

Posted by arkgame