/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>