博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
集群时间同步
阅读量:5899 次
发布时间:2019-06-19

本文共 1376 字,大约阅读时间需要 4 分钟。

1、查看本机是否安装了ntpdate服务,安装 时间同步软件

​   yum install -y ntpdate

   yum install -y ntp

2、同步时间

​   ntpdate time.nist.gov // 同步时间

​   如果同步不了

​   ntpdate time.nuri.net // 校验时间 系统时间

  ​ 把系统时间写入硬件时间

​   hwclock -w // 写入时间

-----------------------------------------------------------------------

1、修改时区

  命令:tzselect

​   选择 5 亚洲

​   9 中国

​   1 北京

  简单做法:

  cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime // 修改时区为上海

2、集群同步时间:必须是root用户

  1、没有ntp的安装ntp

    rpm -qa | grep ntp // 查看是否安装

  2、修改配置文件

    vim /etc/ntp.conf

#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap 为restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap#################################################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 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 10

  3、修改 /etc/sysconfig/ntpd

  加上:SYNC_HWCLOCK=yes

  4、重新启动ntpd,添加开机启动

service ntpd statusservice ntpd start--------------------添加到开机启动chkconfig ntpd on

  5、其他机器配置定时任务,10分钟 同步一次

crontab -e  编写定时器同步时间, 意义:每十分钟与node1 同步一次时间。需要在集群中其他的机器中都编写 crontab -e*/10 * * * * /ntpdata hadoop01

 

转载于:https://www.cnblogs.com/dongxiucai/p/9671599.html

你可能感兴趣的文章
RocketMQ事务消息实战
查看>>
mysql-mmm-2.2.1安装手册
查看>>
奥运主题游戏《阿翔 跨栏》已经发布成功
查看>>
搭建yum源服务器
查看>>
delphi使用ado导出excel
查看>>
hdu5739Fantasia(多校第二场1006) 割点+逆元
查看>>
linux 命令详解 二十三
查看>>
escalation 限制Nagios报警次数
查看>>
IT职场人生系列之二:大学生活
查看>>
4.一对多关联映射
查看>>
php-fpm的max_chindren的一些误区
查看>>
爬取妹子图片
查看>>
IBM Bluemix初识
查看>>
storm 大牛博文
查看>>
HDU 4348 To the moon (主席树区间更新)
查看>>
hdu 三部曲 Cash Machine
查看>>
将数组a中n个整数按相反顺序存放
查看>>
spring data JPA
查看>>
最后的MSN
查看>>
手把手教你做出好看的文本输入框
查看>>