Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing cloudera impala without cloudera manager

Kindly provide the link for installing the imapala in ubuntu without cloudera manager. Couldn't able to install with official link.

Unable to locate package impala using these queries :

sudo apt-get install impala             # Binaries for daemons
sudo apt-get install impala-server      # Service start/stop script
sudo apt-get install impala-state-store # Service start/stop script
like image 547
Naresh Avatar asked Jun 17 '13 11:06

Naresh


People also ask

Is the main tool used by cluster monitoring and management administrators?

Cloudera Manager Admin Console is themain tool used by cluster monitoring andmanagement administrators. The Cloudera Manager API can also beused tomanage clusters.

Where is Hadoop installed in cloudera?

Actually if you use parcels for Cloudera CDH (which is recommended way to install it) it goes under /opt/cloudera/parcels/CDH which is in turn symlink to actual CDH parcel. Under this directory you will find structure very similar to what open source Apache Hadoop normally hase under / .


1 Answers

First you need to get the list of packages and store it in /etc/apt/sources.list.d/, then update the packages, then you fire the Impala queries.

At the terminal do the following:

cd /etc/apt/sources.list.d/
wget http://archive.cloudera.com/impala/ubuntu/precise/amd64/impala/cloudera.list
sudo apt-get update
sudo apt-get install impala             # Binaries for daemons
sudo apt-get install impala-server      # Service start/stop script
sudo apt-get install impala-state-store # Service start/stop script
like image 183
Naresh Avatar answered Nov 15 '22 09:11

Naresh