Setting Up
-
2. Downloading Apache Hive for Fedora
Download Apache Hive for Fedora GNU/Linux
If possible Select directly “Open with Archive Manager”!
-
3. Extracting Apache Hive Archive
Then Extract Apache Hive tar.gz into /tmp Directory
If it does Not Open automatically then Double-Click on File Manager:
Or from Command Line:Copytar -xzvf apache-hive*.tar.gz -C /tmp/
-
4. Setting Up Hive
First, Set the SuperUser as Owner with
Copysudo chown -R root:root /tmp/apache-hive*
Then to Set Up Hive Switch to a Directory into System:
Copysudo mv /tmp/apache-hive* /opt/apache-hive
-
5. Amending User’s Path
Again Append Hive into the Path
This is strictly needed only to Work with Hive from Command Line..Copyecho 'export PATH=/opt/apache-hive/bin:$PATH' >> ~/.bashrc
Reload the Path with:
Copybash
Contents