Created 05-04-2016 06:24 PM
What is the recommended way of installing HDP 2.3 with Ambari 2.2.1 and not use Derby?
Created 05-04-2016 07:42 PM
@Michel Brown, here is the HDP documentation for using non-default databases in Ambari.
These are for Ambari 2.2.1.0: Using Non-Default Databases - Ambari <- For Ambari Server Using Non-Default Databases <- For other HDP services
We currently use Postgres as our backend DB for all of our services.
Created 05-04-2016 07:42 PM
@Michel Brown, here is the HDP documentation for using non-default databases in Ambari.
These are for Ambari 2.2.1.0: Using Non-Default Databases - Ambari <- For Ambari Server Using Non-Default Databases <- For other HDP services
We currently use Postgres as our backend DB for all of our services.
Created 05-04-2016 08:20 PM
@Michel Brown Ambari doesn't need Derby, by default it uses Postgres database but if you want to use custom databases i.e. MySQL, Oracle etc. refer the documentation which @Jon Maestas has pointed you to.
Created 05-04-2016 11:40 PM
At the end of the Ambari configuration during an HDP 2.3 install Ambari puts up a window that says you should not use Derby for an HA installation and shows you the options for other choices. However it appears that it is left to the user to setup those other databases. Is that just a misunderstanding on my part?
Created 05-05-2016 06:21 AM
Yes you are correct, database setup has to be done by user unless using default embedded postgres database.
Created 05-05-2016 06:24 AM
That Derby message is for oozie. Ambari by default picks derby for oozie and warns not to use it in production or HA situations.
Created 05-05-2016 04:23 PM
Please point me to the documentation for setting up PostgreSQL for Oozie.
Created 05-05-2016 04:55 PM
Documentation for setting up oozie with postgres is here
Created 05-05-2016 05:12 PM
When install a test cluster, normally I would setup a MySQL instance to use for Ambari, Hive Metastore, oozie and Ranger. Below are the script I used to setup the process and most of them are copied from the document where you could find more details. All script are tested on centod6.5
Install MySQL before Ambari installation
wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm rpm -ivh mysql-community-release-el7-5.noarch.rpm yum -y install mysql mysql-server mysql-libs mysql-connector-java*
After After
After Ambari installation, setup the users in MySQL for Ambari, Hive, Oozie and Ranger
mysql -u root -p CREATE USER 'ambari'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON *.* TO 'ambari'@'localhost'; CREATE USER 'ambari'@'%' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON *.* TO 'ambari'@'%'; FLUSH PRIVILEGES; CREATE DATABASE ambari; CREATE USER 'hive'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON *.* TO 'hive'@'localhost'; CREATE USER 'hive'@'%' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON *.* TO 'hive'@'%'; FLUSH PRIVILEGES; CREATE DATABASE hive; CREATE USER 'oozie'@'%' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON *.* TO 'oozie'@'%'; FLUSH PRIVILEGES; CREATE DATABASE oozie; CREATE USER 'rangerdba'@'localhost' IDENTIFIED BY 'rangerdba'; GRANT ALL PRIVILEGES ON *.* TO 'rangerdba'@'localhost'; CREATE USER 'rangerdba'@'%' IDENTIFIED BY 'rangerdba'; GRANT ALL PRIVILEGES ON *.* TO 'rangerdba'@'%'; GRANT ALL PRIVILEGES ON *.* TO 'rangerdba'@'localhost' WITH GRANT OPTION; GRANT ALL PRIVILEGES ON *.* TO 'rangerdba'@'%' WITH GRANT OPTION; FLUSH PRIVILEGES; mysql -u root -p ambari < /var/lib/ambari-server/resources/Ambari-DDL-MySQL-CREATE.sql
During Ambari setup after install Ambari server, choose not to used default database and point to the MySQL instance and setup java jdbc connector
ambari-server setup --jdbc-db=mysql --jdbc-driver=/usr/share/java/mysql-connector-java.jar
During Ambari install wizard for HDP, choose existing MySQL for Hive and Oozie and point to the MySQL instance you setup.