Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You need to make a configurations change to allow Hbase and the Hive metastore to functions correctly. Edit the following file as root.
On Ubuntu 14.04 and 16.04

    /etc/postgresql/*/main/pg_hba.conf

On CentOs 6.5

    /var/lib/pgsql/data/pg_hba.conf

...

Put these in your `.bashrc` or elsewhere:
On Ubuntu 14.04/CentOS6.5

Code Block
export JAVA_HOME=/usr/lib/jvm/<your java version>
export LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu
export LC_ALL="en_US.UTF-8"

# If you installed maven manually:
export M2_HOME=/usr/local/apache-maven-3.0.5
export M2=$M2_HOME/bin  
export PATH=$M2:$PATH

...