ntp时间同步

解决的问题: 保证集群中所有的节点时间一致
方案: 需要使用同步软件NTP , 并在主机上开启此服务, 其他节点的时间都要和主机的时间保持一致

步骤:

  1. 确认主机的时间是否正确, 不正确时进行手动修改
date 
date  -s  "2016-01-11  1:1:1"
  1. 确认是否已安装ntp
1)确认是否已安装ntp
rpm –qa | grep ntp

2)删除已安装ntp
若只有ntpdate而未见ntp,则需删除原有ntpdate
yum –y remove ntpdate-4.2.6p5-22.el7.x86_64

3)重新安装ntp
yum –y install ntp

b. 配置ntp 参数: vi /etc/ntp.conf

添加信息: restrict 网段 mask 子网掩码 nomodify notrap

注释三行信息(目的不同步网络时间) server 0.centos.pool.ntp.org 一下三行

之后增加信息( 使用本地时间同步): server 127.127.1.0

c. service ntpd start/stop/status

  1. 其他节点的机器设置定时任务的方式, 与主机的时间保持一致;

修改配置文件来设定时同步时间任务: vim /etc/crontab

*/1 * * * * root ntpdate ip/主机名 注: ntpdate ip 将时间与某ip的主机同步;

  1. 确认3步骤正确性后, 将所有节点都设定时间同步的定时任务; 可以使用scp命令发送crontab文件

你可能感兴趣的:(ntp时间同步)