借鉴网址1
借鉴网址2
hadoop官方配置教程
搭建虚拟机,克隆(或者先配置JAVA和Hadoop环境再克隆,之后要改主机名和映射以及SSH免密)
可以利用xsync集群分发脚本一台机器配置其他机器分发
修改主机名和ip映射
检查
配置ssh免密登录
这里地址为 ~/.ssh
配置JAVA
Hadoop配置
Hadoop完全分布式集群搭建
#Hadoop’s Java configuration is driven by two types of important configuration files: 1.Read-only default configuration - core-default.xml, hdfs-default.xml, yarn-default.xml and mapred-default.xml.#默认配置文件在官网可以找到 2.Site-specific configuration - etc/hadoop/core-site.xml, etc/hadoop/hdfs-site.xml, etc/hadoop/yarn-site.xml and etc/hadoop/mapred-site.xml. #这些都在etc/hadoop/中
集群分配示意图
HDFS daemons are NameNode, SecondaryNameNode, and DataNode. YARN daemons are ResourceManager, NodeManager, and WebAppProxy. If MapReduce is to be used, then the MapReduce Job History Server will also be running.
开始配置
-
etc/hadoop/hadoop-env.sh中配置JAVA_HOME
-
配置core-site.xml
##core-site.xml 自己决定参数 fs.defaultFS hdfs://Master:8080 hadoop.tmp.dir /usr/local/hadoop/tmp
-
配置hdfs-site.xml
dfs.namenode.http-address Master:9870 dfs.namenode.secondary.http-address Slave2:9868 dfs.namenode.name.dir file:/usr/local/hadoop/tmp/dfs/name dfs.datanode.data.dir file:/usr/local/hadoop/tmp/dfs/data
-
配置 yarn-site.xml
yarn.nodemanager.aux-services mapreduce_shuffle yarn.resourcemanager.hostname Slave1 yarn.resourcemanager.webapp.address Slave1:8088
-
配置mapred-site.xm
mapreduce.framework.name yarn
配置workers
List all worker hostnames or IP addresses in your etc/hadoop/workers file, one per line. Helper scripts (described below) will use the etc/hadoop/workers file to run commands on many hosts at once. It is not used for any of the Java-based Hadoop configuration. In order to use this functionality, ssh trusts (via either passphraseless ssh or some other means, such as Kerberos) must be established for the accounts used to run Hadoop.
Master Slave1 Slave2
同步所有节点配置文件(这里使用xsync同步文件脚本)
xsync脚本编写 并且配置到PATH里 可以echo $PATH然后随便找个地方丢进去
更改执行权限 chmod 777 xsync
随便建一个文件测试是否能传到其他服务器上
xsync同步 可以看到文件更新
启动hadoop集群
在Master节点上
首次启动需要格式化 只有首次启动需要
启动HDFS
在配置了ResourceManager的节点启动Yarn
这里是Slave1
在Slave1配置historyserver
查看是否配置完成(与之前画的图一样)
尝试web页面是否能打开
hdfs:
http://master:9870
如果在主机里没有配置master与ip地址关联的话
http://master的ip地址:9870
同理试试yarn:
http://Slave1:8088
由此,Hadoop集群配置完成
xsync
#!/bin/bash #1. 判断参数个数 if [ $# -lt 1 ] then echo Not Enough Arguement! exit; fi #2. 遍历集群所有机器 for host in Master Slave1 Slave2 ##这里注意更改!! do echo ==================== $host ==================== #3. 遍历所有目录,挨个发送 for file in $@ do #4. 判断文件是否存在 if [ -e $file ] then #5. 获取父目录 pdir=$(cd -P $(dirname $file); pwd) #6. 获取当前文件的名称 fname=$(basename $file) ssh $host "mkdir -p $pdir" rsync -av $pdir/$fname $host:$pdir else echo $file does not exists! fi done done
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)