Skip to content

Instantly share code, notes, and snippets.

@josephmisiti
Last active March 2, 2023 13:36
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save josephmisiti/10489023 to your computer and use it in GitHub Desktop.
Save josephmisiti/10489023 to your computer and use it in GitHub Desktop.
Install Cloudera Impala On Ubuntu 12.04
  1. update apt-get
cd /etc/apt/sources.list.d/
wget http://archive.cloudera.com/impala/ubuntu/precise/amd64/impala/cloudera.list
sudo apt-get update
  1. Install Impala [found here [1]]
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
  1. Install java and export JAVA_HOME
export JAVA_HOME=/usr/lib/jvm/java-7-oracle
  1. Install Hadoop

[1] http://stackoverflow.com/a/17162255/323578

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment