Chrony是网络时间协议(NTP)的实现。Chrony通常将计算机与Internet时间服务器或其他资源(例如无线电或卫星接收器或电话调制解调器服务)同步。它也可以用作客户端系统的时间源/服务器。
在CentOS 8上安装NTP服务器
步骤1.首先,让我们首先确保您的系统是最新的。
sudo dnf update sudo dnf install epel-release
步骤2.在CentOS 8上安装NTP服务器。
运行以下命令以安装Chrony:
sudo dnf install chrony
步骤3.配置Chrony NTP服务器。
我们将服务器配置为NTP服务器,它将充当组织中所有客户端的远程时间服务器:
nano /etc/chrony.conf
添加以下行:
# line 3: change servers to synchronize (replace to your own timezone NTP server) # need NTP server itself to sync time with other NTP server # pool 2.centos.pool.ntp.org iburst pool ntp.nict.jp iburst
# line 24: add network range to allow to receive time synchronization requests from NTP Clients # specify your local network and so on # if not specified, only localhost is allowed allow 10.0.0.0/24
重新启动Chrony服务以应用配置更改:
sudo systemctl restart chronyd
sudo systemctl enable chronyd
步骤4.配置防火墙。
添加防火墙规则以允许来自客户端的NTP请求:
sudo firewall-cmd --add-service=ntp --permanent sudo firewall-cmd --reload
步骤5.验证NTP服务器。
现在,我们将通过输入以下命令来检查NTP是否正常工作:
[root@idroot.us ~]# chronyc sources
210 Number of sources = 4 MS Name/IP address Stratum Poll Reach LastRx Last sample =============================================================================== ^+ ntp-a3.nict.go.jp 1 8 466 331 +937us[ +937us] +/- 8281us ^* ntp-k1.nict.jp 1 8 466 318 -1925us[-2056us] +/- 8056us ^+ ntp-b2.nict.go.jp 1 7 466 286 -180ns[ -180ns] +/- 10ms ^+ ntp-b3.nict.go.jp 1 6 466 22 +478us[ +478us] +/- 9808us
恭喜你!您已经成功安装了NTP。感谢您使用本教程在CentOS 8系统上安装NTP服务器。如需其他帮助或有用信息,建议您访问Chrony官方网站。
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun46924.html