Hadoop 2.8.0 Installation On Window 10: Prepare
Hadoop 2.8.0 Installation On Window 10: Prepare
Hadoop 2.8.0 Installation On Window 10: Prepare
GitHub
MuhammadBilalYar/Hadoop-On-Window
Prepare:
These softwares should be prepared to install Hadoop 2.8.0 on window 10 64bit
Set up
1. Check either Java 1.8.0 is already installed on your system or not, use "Javac -version" to
check.
2. If Java is not installed on your system then first install java
under "C:\JAVA"
3. Extract file Hadoop 2.8.0.tar.gz or Hadoop-2.8.0.zip and place under "C:\Hadoop-
2.8.0".
4. Set the path HADOOP_HOME Environment variable on windows 10(see Step 1,2,3 and 4
below).
5. Set the path JAVA_HOME Environment variable on windows 10(see Step 1,2,3 and 4
below).
6. Next we set the Hadoop bin directory path and JAVA bin directory
path.
Configuration
<configuration>
<property>
<name>fs.defaultFS</name>
<value>hdfs://localhost:9000</value>
</property>
</configuration>
2. Rename "mapred-site.xml.template" to "mapred-site.xml" and edit this file C:/Hadoop-
2.8.0/etc/hadoop/mapred-site.xml, paste below xml paragraph and save this file.
<configuration>
<property>
<name>mapreduce.framework.name</name>
<value>yarn</value>
</property>
</configuration>
<configuration>
<property>
<name>dfs.replication</name>
<value>1</value>
</property>
<property>
<name>dfs.namenode.name.dir</name>
<value>C:\hadoop-2.8.0\data\namenode</value>
</property>
<property>
<name>dfs.datanode.data.dir</name>
<value>C:\hadoop-2.8.0\data\datanode</value>
</property>
</configuration>
<configuration>
<property>
<name>yarn.nodemanager.aux-services</name>
<value>mapreduce_shuffle</value>
</property>
<property>
<name>yarn.nodemanager.auxservices.mapreduce.shuffle.class</name>
<value>org.apache.hadoop.mapred.ShuffleHandler</value>
</property>
</configuration>
Hadoop Configuration
Testing
1. Open cmd and change directory to "C:\Hadoop-2.8.0\sbin" and type "start-all.cmd" to
start
apache.
Hadoop Namenode
Hadoop datanode
YARN Resourc Manager
YARN Node
Manager
3. Open: http://localhost:8088