#yum install ntp ntpdate
如果未安装yum,则只需运行以下命令: sudo apt install yum。安装完成后,我们需要启动并启用ntpd服务。
#systemctl启动ntpd
#systemctl启用ntpd
#systemctl status ntpd
既然这样,让我们??运行以下命令来配置NTP服务器。
#ntpdate -u -s 0.centos.pool.ntp.org 1.centos.pool.ntp.org 2.centos.pool.ntp.org
我们正在做的就是告诉ntpdate使用-u开关对输出数据包使用非特权端口,并使用-s开关将日志记录输出写入系统syslog工具。
接下来,让我们重新启动ntpd守护程序。
#systemctl重新启动ntpd
现在,让我们检查NTP同步是否已启用并正在运行。
#timedatectl
对于最后一个hurrah,我们将使用-w开关将硬件时钟设置为当前系统时间。
#hwclock -w
恭喜你!您现在已经在CentOS上成功设置了NTP客户端。