赞
踩
JDK版本:1.8
linux版本:CentOS7
CDH版本:5.11.1
这里我使用虚拟机搭建了三台集群,一台Master,两台Slave
角色 | IP |
Master | 192.168.17.200 |
Slave1 | 192.168.17.201 |
Slave2 | 192.168.17.202 |
环境介绍完了,现在我们就开始安装CDH,安装步骤分为以下几步:
1.虚拟机配置
2.JDK安装与配置
3.MySQL安装
4.安装CM(Cloudera Manager)
5.Agent安装
6.向集群添加新主机
7.设置自启动服务
Linux CentOS7系统安装就跳过了,这个百度,要确保的以下几点:
1.三台主机防火墙关闭,并设置为开机不启动
2.三台主机可以进行免密访问
3.三台主机/etc/hosts配置映射
4.Master时间同步:
执行:
yum install ntp -y
进入配置文件:
vi /etc/ntp.conf
# 1. 先处理权限方面的问题,包括放行上层伺服器以及开放区网用户来源:
restrictdefault kod nomodify notrap nopeer noquery <==拒绝 IPv4 的用户
restrict -6default kod nomodify notrap nopeer noquery <==拒绝 IPv6 的用户
restrict 220.130.158.71 <==放行 tock.stdtime.gov.tw 进入本 NTP 伺服器
restrict59.124.196.83 <==放行 tick.stdtime.gov.tw 进入本 NTP 伺服器
restrict59.124.196.84 <==放行 time.stdtime.gov.tw 进入本 NTP 伺服器
restrict127.0.0.1 <==底下两个是预设值,放行本机来源
restrict -6 ::1
restrict 192.168.100.0mask 255.255.255.0 nomodify <==放行区网来源
# 2. 设定主机来源,请先将原本的 [0|1|2].centos.pool.ntp.org 的设定註解掉:
server220.130.158.71 prefer <==以这部主机为最优先
server59.124.196.83
server59.124.196.84
# 3.预设时间差异分析档案与暂不用到的 keys 等,不需要更动它:
driftfile/var/lib/ntp/drift
keys /etc/ntp/keys
可以直接把以上内容cv进去,除了中文以外。
执行:
service ntpd start
可以使用“Ntpstat”命令查看同步状态,但是第一次使用时,同步时间可能需要十分钟。
当我们查看状态时出现以下情况,表示同步成功:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。