码迷,mamicode.com
首页 > 其他好文 > 详细

集群时间同步

时间:2020-06-24 20:12:53      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:usr   时间   安装   etc   --   kconfig   oop   rest   art   

------------------------------------服务器----------------------------------------------------------

1. 检查ntp是否安装

  rpm -qa|grep ntp

2. 修改ntp配置 /etc/ntp.conf

  1. 设置网段
  2. 设置集群只使用本服务器时间同步
  3. 服务器没联网时依然可以提供时间同步服务

修改如下内容

//添加
restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap
//注释所有如下格式内容(注释掉互联网服务器)
server XXX iburst
//添加
server 127.127.1.0
fudge 127.127.1.0 stratum 10

 

3. 修改/etc/sysconfig/ntpd文件:让硬件时间和系统时间一起同步

SYSC_HWCLOCK=yes

4. 重启ntpd服务

service ntp restart

5. 设置开机启动

chkconfig ntpd on

---------------------------------其他主机---------------------------------------------------------------

配置定时任务每十分钟同步一次 crontab -e

*/10 * * * * /usr/sbin/ntpdate hadoop102

 

集群时间同步

标签:usr   时间   安装   etc   --   kconfig   oop   rest   art   

原文地址:https://www.cnblogs.com/abuduri/p/13189043.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!