方法一
ntpdate -d ${ip}
方法二
编辑地址信息,${ip}替换为实际的IP
vi /etc/ntp.conf
注释掉以下内容
#server 0.centos.pool.ntp.org iburst
#server 1.centos.pool.ntp.org iburst
#server 2.centos.pool.ntp.org iburst
#server 3.centos.pool.ntp.org iburst
新增以下内容
server ${ip}
查看ntp服务状态
systemctl status ntpd
关闭ntp服务
systemctl stopntpd
启动ntp服务
systemctl start ntpd
配置ntp开机自启动
systemctl enable ntpd
重启ntp服务
systemctl restart ntpd
使用ntpstat 命令查看时间同步状态,这个一般需要5-10分钟后才能成功连接和同步。
ntpstat
查看当前时间是否完成同步
date