码迷,mamicode.com
首页 > 系统相关 > 详细

【常用配置】Hadoop-2.6.5在Ubuntu14.04下的伪分布式配置

时间:2017-05-21 23:27:42      阅读:497      评论:0      收藏:0      [点我收藏+]

标签:cal   core   oca   nbsp   datanode   data   4.0   nod   分布   

core-site.xml

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>

<configuration> <property> <name>hadoop.tmp.dir</name> <value>file:/home/hadoop/tmp</value> <description>abase for other temporary directories.</description> </property> <property> <name>fs.defaultFS</name> <value>hdfs://localhost:9000</value> </property> </configuration>

hdfs-site.xml

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>

<configuration>
    <property>
        <name>dfs.replication</name>
        <value>1</value>
    </property>
    <property>
        <name>dfs.namenode.name.dir</name>
        <value>file:/home/hadoop/tmp/dfs/name</value>
    </property>
    <property>
        <name>dfs.datanode.data.dir</name>
        <value>file:/home/hadoop/tmp/dfs/data</value>
    </property>
</configuration>

 

【常用配置】Hadoop-2.6.5在Ubuntu14.04下的伪分布式配置

标签:cal   core   oca   nbsp   datanode   data   4.0   nod   分布   

原文地址:http://www.cnblogs.com/yulinfeng/p/6886453.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!