Configure Hadoop
Now that we have unpacked Hadoop we are ready to configure it.
- Open a new cygwin window and execute the following commands
cd hadoop-0.19.1
cd conf
explorer .

Bringing up explorer window
- As a result of the last command you will see the explorer window for the 'conf' directory popped up. Minimize it for now or move it to the side.
- Launch eclipse
- Bring up the the 'conf' explorer window opened in the step 2 and drug the file hadoop-site to the eclipse main window.
- Insert the following lines between <configuration> and </configuration> tags.
<property>
<name>fs.default.name</name>
<value>hdfs://localhost:9100</value>
</property>
<property>
<name>mapred.job.tracker</name>
<value>localhost:9101</value>
</property>
<property>
<name>dfs.replication</name>
<value>1</value>
</property>
Editing site configuration file
- Close the eclipse, cygwin command window and the explorer window
If you have questions comments suggestions regarding this tutorial you can post them here or you can write me an email to tutorials AT v-lad.org.