Install cloudera impala without cloudera manager

Please provide a link to install imapala in ubuntu without the cloudera manager. Failed to install with official link.

Unable to find impala package 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 
+6
source share
2 answers

First you need to get the list of packages and save it in /etc/apt/sources.list.d/ , and then update the packages , and then run Impala requests.

On 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 
+15
source

Is the correct list file installed? See โ€œPackages and vaultsโ€ on page 14. http://www.cloudera.com/content/cloudera-content/cloudera-docs/Impala/latest/PDF/Installing-and-Using-Impala.pdf

+4
source

Source: https://habr.com/ru/post/947462/


All Articles