Apache Hadoop

본 토픽은 현재 준비중입니다. 공동공부에 참여하시면 완성 되었을 때 알려드립니다.

Configuration 설정

/home/ROOT/hadoop-1.0.3/conf/ 안의

mapred-site.xml

hdfs-site.xml

core-site.xml

파일을 수정 한다.

 

mapred-site.xml
<configuration>
  <property>
     <name>mapred.job.tracker</name>
     <value>localhost:9001</value>
  </property>
</configuration>
 
 
hdfs-site.xml
<configuration>
  <property>
    <name>dfs.replication</name>
    <value>1</value>
  </property>
</configuration>
 
 
core-site.xml
<configuration>
<property>
   <name>fs.default.name</name>
   <value>hdfs://localhost:9000</value>
</property>
<property>
   <name>hadoop.tmp.dir</name>
   <value>/home/dbeorud/data/hadoop</value>
</property>
</configuration>

댓글

댓글 본문
graphittie 자세히 보기