NTP或网络时间协议是一种协议,用于同步网络中的所有系统时钟以使用相同的协议。时间。Chrony是网络时间协议(NTP)的实现。Chrony通常将计算机与Internet时间服务器或其他资源(例如无线电或卫星接收器或电话调制解调器服务)同步。它也可以用作客户端系统的时间源/服务器。
在AlmaLinux 8上安装NTP服务器
步骤1.首先,让我们首先确保您的系统是最新的。
sudo dnf update sudo dnf install epel-release
步骤2.在AlmaLinux上安装NTP服务器8。
现在,我们在服务器上安装所需的ntp软件包:
sudo dnf install chrony
成功安装后,启用chrony服务以在系统启动时自动启动:
sudo systemctl enable chronyd
sudo systemctl start chronyd
步骤3.配置NTP服务器。
确保以下条目位于ntp配置文件中:/etc/chrony.conf
sudo 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 allowedallow 192.168.1.0/24
接下来,重新启动chrony NTP守护程序以应用更改:
sudo systemctl restart chronyd
现在,通过以下命令检查NTP服务的状态:
chronyc sources
步骤4.配置防火墙。
如果您在AlmaLinux上启用了防火墙,则需要为NTP允许端口以接受传入请求:
sudo firewall-cmd --permanent --add-service=ntp sudo firewall-cmd --reload
恭喜你!您已经成功安装了NTP。感谢您使用本教程在AlmaLinux 8系统上安装NTP服务器。如需其他帮助或有用信息,建议您访问Chrony官方网站。
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun46926.html