1、查看系统中是否安装了NTP包
#rpm -q ntp
2、安装
#yum install ntp -y
再次查看
#rpm -q ntp
3、ntp是否设置为开启启动
#systemctl is-enabled ntpd
结果为enabled或 disabled
设置开机启动
#chkconfig ntpd on
启动
#service ntpd start
查看状态
#service ntpd status
如需停止
#service ntpd stop
4、在主节点上配置时间服务器
vim /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
添加以下2行
#server 127.127.1.0
#fudge 127.127.1.0 stratum 10
在restrict指定的两行下面追加一行:
#restrict 192.168.1.1 mask 255.255.252.0 nomodify notrap
5、在其他机器上配置(客户端)
5.1同样执行上面的一些命令对ntp进行安装、启动、自启配置、状态查看等操作,
配置文件依然是:/etc/ntp.conf
同样注释默认的server服务器
#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
保存退出
5.2 重启ntp服务
# service ntpd restart
6、手动一次让客户端节点与服务器同步
6.1 停止服务
#service ntpd stop
6.2 执行同步
#ntpdate 服务器ip
6.3启动服务
service ntpd start