Quantcast
Channel: CSDN博客推荐文章
Viewing all articles
Browse latest Browse all 35570

ubuntu12.10 安装hadoop1.0.4伪分布式

$
0
0

我是使用的虚拟机安装的,安装ubuntu12.10那就不说了,说一下简单的安装hadoop1.0.4伪分布式的步骤。

1、 安装jdk

安装方式参照我的上一篇文章http://blog.csdn.net/mengxiangyue/article/details/8589308

2、 安装SSH和配置免输入密码登陆

在ubuntu12.10中可以使用sudo apt-get install ssh方式进行安装。如果出现问题的话,可以修改一下ubuntu的agt的源,我是改为163的源后才能正常安装的。百度很容易找到修改方式。

然后输入ssh-keygen -t dsa -P '' -f ~/.ssh/id_dsa,输入类似如下的内容

然后输入cat ~/.ssh/id_dsa.pub >> ~/.ssh/authorized_keys 命令。

3、讲hadoop1.0.4解压到某个目录下。

4、 修改配置文件:

进入hadoop-env.sh所在目录(/hadoop-1.0.4/conf/),对该文件进行如下内容的修改:export JAVA_HOME=/usr/java/jdk1.6.0_37。这里是你自己配置的jdk地址。

conf/core-site.xml:

<configuration>
     <property>
         <name>fs.default.name</name>
         <value>hdfs://localhost:9000</value>
     </property>
</configuration>
conf/hdfs-site.xml:

<configuration>
     <property>
         <name>dfs.replication</name>
         <value>1</value>
     </property>
</configuration>
conf/mapred-site.xml:

<configuration>
     <property>
         <name>mapred.job.tracker</name>
         <value>localhost:9001</value>
     </property>
</configuration>

5、 格式化namenode 

输入命令bin/hadoop namenode -format

6、 启动hadoop

输入命令bin/start-all.sh 

以上都是默认在hadoop目录中的文件。


使用http://localhost:50030、http://localhost:50070 进行验证

作者:mengxiangyue 发表于2013-2-19 23:10:28 原文链接
阅读:105 评论:0 查看评论

Viewing all articles
Browse latest Browse all 35570

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>