Software Development Exam  >  Software Development Notes  >  Hadoop Tutorials: Brief Introduction  >  Hadoop 2 Installation on Ubuntu – Setup of Hadoop CDH5

Hadoop 2 Installation on Ubuntu – Setup of Hadoop CDH5 | Hadoop Tutorials: Brief Introduction - Software Development PDF Download

1. Hadoop 2 Installation Tutorial: Objective

This Hadoop 2 Installation tutorial describes how to install and configure Hadoop cluster on a single-node on Ubuntu OS. Single Node Hadoop cluster is also called as “Hadoop Pseudo-Distributed Mode”. The Hadoop 2 installation is explained here very simply and to the point, so that you can learn Hadoop CDH5 Installation in 10 Min. Once the you install Hadoop 2 is done you can perform Hadoop Distributed File System (HDFS) and Hadoop Map-Reduce operations.

Looking to BOOST your career in the exciting field of Big Data, Learn Big Data and Hadoop from Experts.



2. Hadoop 2 Installation: Video Tutorial

https://edurev.in/studytube/Easiest-way-to-install--setup-hadoop--Hadoop-tutor/9a1e6494-41a1-4e6a-894d-f380be774c2d_v


3. Install Hadoop 2 on Ubuntu

Follow the steps given below to install and configure Hadoop 2 cluster on ubuntu os-

3.1. Recommended Platform

  • OS – Linux is supported as a development and production platform. You can use Ubuntu 14.04 or later (you can also use other Linux flavors like CentOS, Redhat, etc.)
  • Hadoop – Cloudera Distribution for Apache Hadoop CDH5.x (you can use Apache Hadoop 2.x)

I. Setup Platform

If you are using Windows/Mac OS 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.

3.2. Prerequisites

I. Install Java 8 (Recommended Oracle Java)

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. Configure SSH

a. Install Open SSH Server-Client

sudo apt-get install openssh-server openssh-client

b. Generate 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.2. Install Hadoop

I. Download Hadoop 2

http://archive.cloudera.com/cdh5/cdh/5/hadoop-2.5.0-cdh5.3.2.tar.gz


II. Untar Tar ball

tar xzf hadoop-2.5.0-cdh5.3.2.tar.gz

Note: All the required jars, scripts, configuration files, etc. are available in HADOOP_HOME directory (hadoop-2.5.0-cdh5.3.2).


III. Hadoop 2 Setup Configuration

a. Edit .bashrc

Now, edit .bashrc file located in user’s home directory and add following parameters:


  1. export HADOOP_PREFIX="/home/hdadmin/hadoop-2.5.0-cdh5.3.2"
  2. export PATH=$PATH:$HADOOP_PREFIX/bin
  3. export PATH=$PATH:$HADOOP_PREFIX/sbin
  4. export HADOOP_MAPRED_HOME=${HADOOP_PREFIX}
  5. export HADOOP_COMMON_HOME=${HADOOP_PREFIX}
  6. export HADOOP_HDFS_HOME=${HADOOP_PREFIX}
  7. export YARN_HOME=${HADOOP_PREFIX}


Note: After above step restarts the terminal so that all the environment variables will come into effect.

b. Edit hadoop-env.sh

Now, edit configuration file hadoop-env.sh (located in HADOOP_HOME/etc/hadoop) and set JAVA_HOME:

export JAVA_HOME=<path-to-the-root-of-your-Java-installation> (eg: /usr/lib/jvm/java-8-oracle/)

c. Edit core-site.xml

Now, edit configuration file core-site.xml (located in HADOOP_HOME/etc/hadoop) and add following entries:


  1. <configuration>
  2. <property>
  3. <name>fs.defaultFS</name>
  4. <value>hdfs://localhost:9000</value>
  5. </property>
  6. <property>
  7. <name>hadoop.tmp.dir</name>
  8. <value>/home/dataflair/hdata</value>
  9. </property>
  10. </configuration>

Note: /home/hdadmin/hdata is a sample location; please specify a location where you have Read Write privileges

d. Edit hdfs-site.xml

Now, edit configuration file hdfs-site.xml (located in HADOOP_HOME/etc/hadoop) and add following entries:

  1. <configuration>
  2. <property>
  3. <name>dfs.replication</name>
  4. <value>1</value>
  5. </property>
  6. </configuration>


e. Edit mapred-site.xml

Now, edit configuration file mapred-site.xml (located in HADOOP_HOME/etc/hadoop) and add following entries:

  1. <configuration>
  2. <property>
  3. <name>mapreduce.framework.name</name>
  4. <value>yarn</value>
  5. </property>
  6. </configuration>


f. Edit yarn-site.xml

Now, edit configuration file mapred-site.xml (located in HADOOP_HOME/etc/hadoop) and add following entries:

  1. <configuration>
  2. <property>
  3. <name>yarn.nodemanager.aux-services</name>
  4. <value>mapreduce_shuffle</value>
  5. </property>
  6. <property>
  7. <name>yarn.nodemanager.aux-services.mapreduce.shuffle.class</name>
  8. <value>org.apache.hadoop.mapred.ShuffleHandler</value>
  9. </property>
  10. </configuration>


3.4. Start the Cluster

I. Format the name node

bin/hdfs namenode -format

NOTE: This activity should be done once when you install Hadoop, else It will delete all your data from HDFS.


II. Start HDFS Services

sbin/start-dfs.sh


III. Start YARN Services

sbin/start-yarn.sh

Follow this link to learn What is YARN?


IV. Check whether services have been started

  1. jps
  2. NameNode
  3. DataNode
  4. ResourceManager
  5. NodeManager


3.5. Run Map-Reduce Jobs

I. Run word count example


  1.  bin/hdfs dfs -mkdir /inputwords
  2. bin/hdfs dfs -put <data-file> /inputwords
  3. bin/yarn jar share/hadoop/mapreduce/hadoop-mapreduce-examples-2.5.0-cdh5.3.2.jar wordcount /inputwords /outputwords
  4. bin/hdfs dfs -cat /outputwords/*


Follow HDFS command Guide to Play with HDFS Commands and perform various operations,


3.6. Stop The Cluster

I. Stop HDFS Services

sbin/stop-dfs.sh

II. Stop YARN Services

sbin/stop-yarn.sh

The document Hadoop 2 Installation on Ubuntu – Setup of Hadoop CDH5 | Hadoop Tutorials: Brief Introduction - Software Development is a part of the Software Development Course Hadoop Tutorials: Brief Introduction.
All you need of Software Development at this link: Software Development
1 videos|14 docs

Top Courses for Software Development

FAQs on Hadoop 2 Installation on Ubuntu – Setup of Hadoop CDH5 - Hadoop Tutorials: Brief Introduction - Software Development

1. How do I install Hadoop 2 on Ubuntu?
Ans. To install Hadoop 2 on Ubuntu, you can follow the steps mentioned in the article. First, you need to download the CDH5 repository key and add it to the apt-key. Then, add the CDH5 repository to the apt sources list. After that, update the package list and install Hadoop using the apt-get command.
2. What is the difference between Hadoop 1 and Hadoop 2?
Ans. Hadoop 1 and Hadoop 2 are two different versions of the Hadoop framework. The main difference between them is the introduction of YARN (Yet Another Resource Negotiator) in Hadoop 2. YARN allows Hadoop to support multiple processing models, making it more flexible and efficient. In Hadoop 1, the MapReduce framework was tightly coupled with the resource management, which limited its scalability.
3. Can I install Hadoop 2 on a different Ubuntu version?
Ans. Yes, you can install Hadoop 2 on different versions of Ubuntu. However, the steps may vary slightly depending on the version you are using. It is recommended to refer to the official documentation or specific installation guides for the particular Ubuntu version you are using to ensure compatibility and accuracy.
4. What are the system requirements for installing Hadoop 2 on Ubuntu?
Ans. The system requirements for installing Hadoop 2 on Ubuntu include a 64-bit processor, a minimum of 4GB RAM, and a minimum of 10GB disk space. It is also recommended to have a dedicated machine for running Hadoop to ensure optimal performance. Additionally, a stable internet connection is required to download and install the necessary packages.
5. Can I use Hadoop 2 for production environments on Ubuntu?
Ans. Yes, Hadoop 2 can be used for production environments on Ubuntu. However, it is important to properly configure and tune Hadoop according to your specific requirements and workload. It is also recommended to have a good understanding of Hadoop administration and monitoring to ensure the smooth running of your production environment. Regular maintenance, monitoring, and updates are crucial for the stability and performance of your Hadoop cluster.
1 videos|14 docs
Download as PDF
Explore Courses for Software Development exam

Top Courses for Software Development

Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

study material

,

past year papers

,

Summary

,

Hadoop 2 Installation on Ubuntu – Setup of Hadoop CDH5 | Hadoop Tutorials: Brief Introduction - Software Development

,

Hadoop 2 Installation on Ubuntu – Setup of Hadoop CDH5 | Hadoop Tutorials: Brief Introduction - Software Development

,

practice quizzes

,

video lectures

,

MCQs

,

Exam

,

pdf

,

Objective type Questions

,

Semester Notes

,

shortcuts and tricks

,

Sample Paper

,

Viva Questions

,

Free

,

Extra Questions

,

Important questions

,

Hadoop 2 Installation on Ubuntu – Setup of Hadoop CDH5 | Hadoop Tutorials: Brief Introduction - Software Development

,

mock tests for examination

,

Previous Year Questions with Solutions

,

ppt

;