centos7 配置NTP服务器

NTP服务器是为了同步时钟周期,防止应为时钟的不一致引起的错误,常用与集群环境中。
集群如下:
server: Hortonworks01
client: Hortonworks02 Hortonworks03

目的是集群时间同步到Hortonworks01。

在所有节点上安装ntpd模块

yum install –y ntp

在server 上执行:

修改/etc/ntp.conf

修改/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 127.127.1.0
fudge 127.127.1.0 stratum 8

启动服务:systemctl start ntpd.service
开机自启:systemctl enable ntpd.service

验证:watch ntpq –p

在client上执行

修改 配置文件 /etc/ntp.conf

设置时间服务器为 Hortonworks01

同步时间:

ntpdate Hortonworks01

启动ntp并设置开机自启:
启动:systemctl start ntpd.service
开机自启:systemctl enable ntpd.service

在所有节点上执行

启动时间同步

timedatectl set-ntp yes

你可能感兴趣的:(linux)