Book Image

Apache Hive Essentials

By : Dayong Du
Book Image

Apache Hive Essentials

By: Dayong Du

Overview of this book

Table of Contents (17 chapters)
Apache Hive Essentials
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Installing Hive from Apache


To introduce the Hive installation, we use Hive version 1.0.0 as an example. The pre-installation requirements for this installation are as follows:

The following steps describe how to install Hive from Apache through the Linux command line:

  1. Download Hive from Apache Hive and unpack it:

    bash-4.1$ wget http://apache.mirror.rafal.ca/hive/hive-1.0.0/apache-hive-1.0.0-bin.tar.gz
    bash-4.1$ tar -zxvf apache-hive-1.0.0-bin.tar.gz
    
  2. Add Hive to the system path by opening /etc/profile or ~/.bashrc and add the following two rows:

    export HIVE_HOME=/home/hivebooks/apache-hive-1.0.0-bin
    export PATH=$PATH...