Hadoop 分布式环境搭建
一、前期环境
- 安装概览
IP | Host Name | Software | Node |
192.168.23.128 | ae01 | JDK 1.7 | NameNode, SecondaryNameNode, DataNode, JobTracker, TaskTracker |
192.168.23.129 | ae02 | JDK 1.7 | DataNode, TaskTracker |
192.168.23.130 | ae03 | JDK 1.7 | DataNode, TaskTracker |
- 若使用虚拟机安装,可以安装 samba, smbfs方便对于文件的控制。
- 系统环境: ubuntu-12.04.2-server-amd64
- 安装目录: /usr/local/ae
- JDK 安装目录: export JAVA_HOME=/usr/local/ae/jdk1.7.0_51
- Hadoop版本: hadoop-1.2.1
二、服务器间无密码登录
进入每台服务器,分别安装SSH,并生成ssh-key。下面安装步骤只讲解在ae01安装SSH和生成SSH-KEY,ae02、ae03重复此步骤。
- 安装SSH
user@ae01:~$ sudo apt-get install openssh-server
- 生成SSH-KEY
user@ae01:~# ssh-keygen -t rsa -P ""
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Created directory '/root/.ssh'.
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
:3d:a4:::c4:::6b:6b:1c:7c:e9:8f:: user@ae01
The key's randomart image is:
+--[ RSA ]----+
| .=*.. |
| === . . |
| Oo= E |
| = = . o |
| S . . |
| . + |
| . . |
| |
| |
+-----------------+ - 配置无密码SSH登录
如果你希望服务器a1不需要密码就能SSH登录服务器a2,你需要将a1生成的公共密码添加到a2的~/.ssh/authorized_keys文件.
此次安装中,ae01是NameNode,需要无密码登录到DataNode(ae02,ae03)的服务器,所以我们需要分别将ae01生成的公钥,添加到ae02,ae03的authorized_keys文件。
修改ae01的公钥名字为id_rsa_ae01.pub。user@ae01:~/.ssh$ sudo cp id_rsa.pub id_rsa_ae01.pub
复制id_rsa_ae01.pub到服务器ae02
user@ae01:~/.ssh$ scp ./id_rsa_ae01.pub user@192.168.23.129:~/.ssh/
登录到ae02,将id_rsa_ae01.pub 添加到authorized_keys
user@ae02:~/.ssh$ cat id_rsa_ae01.pub >> authorized_keys
重新登录到ae01,并尝试无密码方面ae02
user@ae01:~/.ssh$ ssh ae02
Welcome to Ubuntu 12.04. LTS (GNU/Linux 3.5.--generic x86_64) * Documentation: https://help.ubuntu.com/ System information as of Thu Jun :: CST System load: 0.0 Processes:
Usage of /: 10.3% of .45GB Users logged in:
Memory usage: % IP address for eth0: 192.168.23.129
Swap usage: % Graph this data and manage this system at https://landscape.canonical.com/ packages can be updated.
updates are security updates. Last login: Tue Jun :: from 192.168.23.128对以上机器都进行如上操作,确保两两之间可以实现无密码ssh.
三、安装 Hadoop
- 修改host文件,添加3台服务器的host
user@ae01:/usr/local/ae$ sudo vim /etc/hosts
127.0.0.1 localhost
192.168.23.128 ae01
192.168.23.129 ae02
192.168.23.129 ae03 - 解压Hadoop
将hadoop-1.2.1.tar.gz 复制到 /usr/local/ae,解压user@ae01:/usr/local/ae$ sudo tar -zxvf hadoop-1.2..tar.gz
- 添加Hadoop环境变量
export HADOOP_HOME=/usr/local/ae/hadoop-1.2.
export HADOOP_HOME_WARN_SUPPRESS=
export PATH=$PATH:$HADOOP_HOME/bin - 配置Hadoop
core-site.xml是全局配置,hdfs-site.xml和mapred-site.xml分别是hdfs和mapred的局部配置修改$HADOOP_HOME/conf/hadoop-env.sh 添加JAVA_HOME
export JAVA_HOME=/usr/local/ae/jdk1..0_51
修改$HADOOP_HOME/conf/core-site.xml 加入以下文件到<configuration>节点
<property>
<name>hadoop.tmp.dir</name>
<value>/usr/local/ae/storage/hadoop/temp</value>
<description>A base for other temporary directories.</description>
</property> <property>
<name>fs.default.name</name>
<value>hdfs://ae01:9000</value>
<description>
The name of the default file system. A URI whose scheme and authority determine the FileSystem implementation. The uri's scheme determines the config property (fs.SCHEME.impl) naming the FileSystem implementation class. The uri's authority is used to
determine the host, port, etc. for a filesystem.
</description>
</property>
<property>
<name>fs.checkpoint.period</name>
<value>3600</value>
<description>
The number of seconds between two periodic checkpoints.
</description>
</property> <property>
<name>fs.checkpoint.size</name>
<value>67108864</value>
<description>
The size of the current edit log (in bytes) that triggers a periodic checkpoint even if the fs.checkpoint.period hasn't expired.
</description>
</property>修改$HADOOP_HOME/conf/hdfs-site.xml 加入以下文件到<configuration>节点
<property>
<name>dfs.name.dir</name>
<value>/usr/local/ae/storage/hadoop/name</value>
<description>
Determines where on the local filesystem the DFS name node should store the name table(fsimage). If this is a comma-delimited list of directories then the name table is replicated in all of the directories, for redundancy.
</description>
</property> <property>
<name>dfs.data.dir</name>
<value>/usr/local/ae/storage/hadoop/data</value>
<description>]
Determines where on the local filesystem the DFS name node should store the name table(fsimage). If this is a comma-delimited list of directories then the name table is replicated in all of the directories, for redundancy.
</description>
</property> <property>
<name>dfs.http.address</name>
<value>ae01:50070</value>
<description>
The address and the base port where the dfs namenode web ui will listen on. If the port is 0 then the server will start on a free port.
</description>
</property> <property>
<name>dfs.permissions</name>
<value>false</value>
<description>
If "true", enable permission checking in HDFS. If "false", permission checking is turned off,
but all other behavior is unchanged. Switching from one parameter value to the other does not change the mode, owner or group of files or directories.
</description>
</property> <property>
<name>dfs.replication</name>
<value>1</value>
<description>Default block replication. The actual number of replications can be specified when the file is created. The default is used if replication is not specified in create time.
</description>
</property>修改$HADOOP_HOME/conf/mapred-site.xml 加入以下文件到<configuration>节点
<property>
<name>mapred.job.tracker</name>
<value>ae01:9001</value>
<description>
The host and port that the MapReduce job tracker runs at. If "local", then jobs are run in-process as a single map and reduce task.
</description>
</property>修改$HADOOP_HOME/conf/masters
ae01
修改$HADOOP_HOME/conf/slaves
ae01
ae02
ae03在上述配置中:
fs.default.name的值hdfs://ae01:9000 用来决定NameNode
mapred.job.tracker的值ae01:9001 用来决定JobTracker
masters文件的值决定SecondaryNameNode
slaves文件的值决定DataNode和TaskTracker创建文件目录/usr/local/ae/storage/hadoop, 并赋予hadoop 文件夹足够的权限
user@ae01: ~$ /usr/local/ae$ sudo chmod 777 ./storage/hadoop/
将配置好的Hadoop复制到ae02和ae03,并在ae02和ae03上创建文件目录/usr/local/ae/storage/hadoop
初始化和启动Hadoop
登录ae01,初始化
user@ae01:~$ hadoop namenode -format
启动Hadoop
user@ae01:~$ start-all.sh
使用jps查看java进程
ae01user@ae01:/usr/local/ae$ jps
26239 JobTracker
26158 SecondaryNameNode
36052 Jps
26468 TaskTracker
25687 NameNode
25926 DataNodeae02
user@ae02:~$ jps
25021 Jps
18999 TaskTracker
18791 DataNodeae03
user@ae03:~$ jps
3901 DataNode
9485 Jps
4106 TaskTracker
Hadoop 分布式环境搭建的更多相关文章
- 攻城狮在路上(陆)-- hadoop分布式环境搭建(HA模式)
一.环境说明: 操作系统:Centos6.5 Linux node1 2.6.32-431.el6.x86_64 #1 SMP Fri Nov 22 03:15:09 UTC 2013 x86_64 ...
- [大数据学习研究] 3. hadoop分布式环境搭建
1. Java安装与环境配置 Hadoop是基于Java的,所以首先需要安装配置好java环境.从官网下载JDK,我用的是1.8版本. 在Mac下可以在终端下使用scp命令远程拷贝到虚拟机linux中 ...
- WMware 中CentOS系统Hadoop 分布式环境搭建(一)——Hadoop安装环境准备
1.创建3台虚拟机并装好系统,这里使用64位CentOS. 2.Ping测试[确保两两能ping通]: [ping xxx.xxx.xxx.xxx] 3.安装SSH:[yum install ssh ...
- Hadoop学习笔记(3)——分布式环境搭建
Hadoop学习笔记(3) ——分布式环境搭建 前面,我们已经在单机上把Hadoop运行起来了,但我们知道Hadoop支持分布式的,而它的优点就是在分布上突出的,所以我们得搭个环境模拟一下. 在这里, ...
- Hadoop学习笔记1:伪分布式环境搭建
在搭建Hadoop环境之前,请先阅读如下博文,把搭建Hadoop环境之前的准备工作做好,博文如下: 1.CentOS 6.7下安装JDK , 地址: http://blog.csdn.net/yule ...
- 【HADOOP】| 环境搭建:从零开始搭建hadoop大数据平台(单机/伪分布式)-下
因篇幅过长,故分为两节,上节主要说明hadoop运行环境和必须的基础软件,包括VMware虚拟机软件的说明安装.Xmanager5管理软件以及CentOS操作系统的安装和基本网络配置.具体请参看: [ ...
- 【转】Hadoop HDFS分布式环境搭建
原文地址 http://blog.sina.com.cn/s/blog_7060fb5a0101cson.html Hadoop HDFS分布式环境搭建 最近选择给大家介绍Hadoop HDFS系统 ...
- 【Hadoop】伪分布式环境搭建、验证
Hadoop伪分布式环境搭建: 自动部署脚本: #!/bin/bash set -eux export APP_PATH=/opt/applications export APP_NAME=Ares ...
- 【Hadoop基础教程】4、Hadoop之完全分布式环境搭建
上一篇blog我们完成了Hadoop伪分布式环境的搭建,伪分布式模式也叫单节点集群模式, NameNode.SecondaryNameNode.DataNode.JobTracker.TaskTrac ...
随机推荐
- ssh-keygen详解
先来一段google wiki关于ssh key的解释,对应的连接为:https://wiki.archlinux.org/index.php/SSH_keys_(%E7%AE%80%E4%BD%93 ...
- 51nod1049(计算最大子段和)
题目链接:http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1049 题意:又是仲文题诶- 思路:暴力会超时,又好像没什么专门 ...
- memarch
memached 是一个高性能的分布式对象缓存系统,用于动态web应用以减轻数库负载.它通过在内存中缓存数据和对象来减少读取数据库的次数,从而提高动态数据驱动网站的速度.memcached基于一个存储 ...
- 《CLR via C#》读书笔记(1)CLR执行模型
1.1 释义 CLR 公共语音运行时 Common Language Runtime CTS 通用类型系统 Common Type System CTS.CLS是CLR的核心 CLS 通用语言规范 C ...
- MyEclipse2014配置Tomcat开发JavaWeb程序JSP以及Servlet(转载)
转载地址:http://blog.csdn.net/21aspnet/article/details/21867241 1.安装准备 1).下载安装MyEclipse2014,这已经是最新版本. 2) ...
- ss + pac
浅析PAC,教你动手修改你的PAC文件及user-rule文件实现自动代理 - 推酷http://www.tuicool.com/articles/V77jyu shadowsocks自定义代理规则u ...
- poj 3264:Balanced Lineup(线段树,经典题)
Balanced Lineup Time Limit: 5000MS Memory Limit: 65536K Total Submissions: 32820 Accepted: 15447 ...
- 蛋疼的Fedora17
在公司给同事要安装ASM oracle 11g,说要在forder17上安装,于是乎我先在自己的虚拟机上安装了一个forder17,遇到了几个很蛋疼的问题: 1. 安装的时候没有创建普通用户 ...
- Windows下Apache服务器中自动配置二级子域名
今天我们介绍的这个办法,只需要简单修改 httpd-vhosts.conf 文件,配合 .htaccess 文件即可实现自动配置二级域名. 我们这里以 wpchina.com 为例,以下代码中的 wp ...
- python解析RSS(feedparser)
虽然说当今的博客已经不像前几年那么火了,但是RSS还是一项很有创造性和实用性的东西.RSS 是用于分发 Web 站点上的内容的摘要的一种简单的 XML 格式.它能够用于共享各种各样的信息.关于RSS的 ...