APACHE-HIVE INSTALLATION ON UBUNTU
Apache-Hive Installation On top Of Hadoop Note : Before that installation you should installed Hadoop step 1: https://downloads.apache.org/hive/hive-3.1.2/ this is download link for apache-hive-3.1.2 through that link you can download the hive. if you any other latest version use the link - https://hive.apache.org/general/downloads/ now you should start the hadoop step 2 : Once you download hive, extract the hive file and set hadoop environmental hive path in you bashrc file : like.. command for open bashrc file "gedit .bashrc" add path in your bashrc file.. export HIVE_HOME=<your hive path .......> export HIVE_CONF_DIR=<you hive conf path.....> excute the command "source .bashrc" step 3: Install mysql, it is need for hive.. Note : hive has a inbuilt rdbms derby command for install mysql-server "sudo apt-get install mysql-server" if you want login mysql the command "sudo mysql -u root -p" step 4: download mysql co...