NTP(Network Time Protocol)是一种用于同步计算机系统时间的协议。在Linux系统中,您可以使用ntpdate命令或者chrony服务来实现时间同步。下面我将分别介绍服务端和客户端如何配置NTP功能: 服务端配置:安装chrony服务:
sudo apt update sudo apt install chrony 打开配置文件/etc/chrony/chrony.conf:
sudo nano /etc/chrony/chrony.conf 在配置文件中,确保allow指令允许客户端同步时间。例如,允许所有客户端同步时间可以添加以下内容:
启动并启用chrony服务:
sudo systemctl start chrony sudo systemctl enable chrony 客户端配置:安装chrony服务:
sudo apt update sudo apt install chrony 打开配置文件/etc/chrony/chrony.conf:
sudo nano /etc/chrony/chrony.conf 在配置文件中,指定服务端的IP地址或域名。找到或添加类似以下内容:
server your_server_ip_or_hostname iburst 启动并启用chrony服务:
sudo systemctl start chrony sudo systemctl enable chrony 使用以下命令手动同步时间(可选):
通过上述步骤,您可以在Linux系统上配置NTP服务端和客户端,实现时间同步。请确保服务端和客户端的防火墙允许NTP流量通过,以确保正常的时间同步。 |