Configure Hive Metastore on MySQL
We will see how to configure Hive metastore on MySQL. Create User and Database for Hive Metastore Create User :- mysql> CREATE USER ‘hiveuser’@’localhost’ IDENTIFIED BY ‘password’; Query OK, 0 rows affected (0.00 sec) mysql> GRANT ALL PRIVILEGES ON *.* TO ‘hiveuser’@’localhost’ WITH GRANT OPTION; Query OK, 0 rows affected…