1. Install Hadoop 2.7 on Ubuntu Tutorial: Objective
This Install Hadoop 2.7 on Ubuntu tutorial explains about How to install and configure Hadoop 2.7.x on Ubuntu? In this tutorial, we will step by step guide you on how to install Hadoop and deploy Hadoop on the Single server (single node cluster) on Ubuntu OS. This quick start will help you to install Hadoop 2.7 on ubuntu, configure and run it in less than 10 min. While installation we will enable YARN so that apart from MapReduce you can run different types of applications like Spark.
Looking to start career in Big Data and Hadoop – Learn from Experts
2. How to Install Hadoop 2.7 on Ubuntu?
In this section of Hadoop 2.7 installation tutorial, we will learn step by step to install and configure Hadoop 2.7.x on Ubuntu OS. Follow the steps given below to install Hadoop 2.7 –
2.1. Prerequisites to install Hadoop 2.7 on Ubuntu
If you are using Windows/Mac OS to install Hadoop 2.7 you can create a virtual machine and install Ubuntu using VMWare Player, alternatively, you can create a virtual machine and install Ubuntu using Oracle Virtual Box.
I. Install Oracle Java 8
a. Install Python Software Properties
sudo apt-get install python-software-properties
b. Add Repository
sudo add-apt-repository ppa:webupd8team/java
c. Update the source list
sudo apt-get update
d. Install Java
sudo apt-get install oracle-java8-installer
II. Setup Password-less SSH
a. Install Open SSH Server & Open SSH Client
sudo apt-get install openssh-server openssh-client
b. Generate Public & Private Key Pairs
ssh-keygen -t rsa -P ""
c. Configure password-less SSH
cat $HOME/.ssh/id_rsa.pub >> $HOME/.ssh/authorized_keys
d. Check by SSH to localhost
ssh localhost
3.1. Configure, Setup and Install Hadoop 2.7 on Ubuntu
I. Download Hadoop
https://archive.apache.org/dist/hadoop/common/hadoop-2.7.1/hadoop-2.7.1.tar.gz
II. Untar Tar ball
tar xzf hadoop-2.7.1.tar.gz
Note: All the required jars, scripts, configuration files, etc. are available in HADOOP_HOME directory (hadoop-2.7.1)
III. Setup Configuration
a. Edit .bashrc
Edit .bashrc file located in user’s home directory and add following parameters:
Note: After above step restarts the terminal so that all the environment variables will come into effect
b. Edit hadoop-env.sh
Edit hadoop-env.sh (hadoop-env.sh is located in etc/hadoop inside Hadoop installationdirectory) and set JAVA_HOME:
export JAVA_HOME=<root-of-your-Java-installation> (eg: /usr/lib/jvm/java-8-oracle/)
c. Edit core-site.xml
Edit core-site.xml (core-site.xml is located in etc/hadoop inside Hadoop installation directory) and add following entries:
Note: you must have Read Write privileges in /home/hdadmin/hdata else specify a location where you have Read Write privileges.
d. Edit hdfs-site.xml
Edit hdfs-site.xml (hdfs-site.xml is located in etc/hadoop inside Hadoop installation directory) and add following entries:
e. Edit mapred-site.xml
Edit mapred-site.xml (mapred-site.xml.template is located in etc/hadoop inside Hadoop installation directory, copy the file with the name mapred-site.xml) and add following entries:
f. Edit yarn-site.xml
Edit yarn-site.xml (yarn-site.xml is located in etc/hadoop inside Hadoop installation directory) and add following entries:
4.1. Start the Cluster
I. Format the name node:
hdfs namenode -format
NOTE: Namenode should be formatted just once when you install Hadoop.
II. Start HDFS Services:
start-dfs.sh
III. Start YARN Services:
start-yarn.sh
IV. Check whether services have been started
5.1. Run Map-Reduce Jobs
I. Run word count example:
To work with HDFS and perform various operations follow this guide
6.1. Stop the Cluster
I. Stop HDFS Services:
stop-dfs.sh
II. Stop YARN Services:
stop-yarn.sh
This was all on the tutorial to install Hadoop 2.7 on Ubuntu in 10 minutes.
1 videos|14 docs
|
|
Explore Courses for Software Development exam
|