Created on 07-08-2016 08:14 AM - edited 09-16-2022 03:28 AM
CDH 5.7.1
Atempts to install Oozie with Cloudera Manager fails with the error in stderr log file:
Error: Could not connect to the database: java.sql.SQLException: Access denied for user 'oozie'@'localhost' (using password: YES)
Steps I'm running.
Full disclosure: This is the second attempt to install this cluster (after removing packages, dropping databases, etc) so I'm thinking some configuration file was left behind (but it would still have been the same values). Datanode DNS issues caused me to reset the installation.
Created on 07-08-2016 09:14 AM - edited 07-08-2016 09:15 AM
Well, not really a solution, but after trying various combinations I was able to install and start the Oozie process. It worked after I created a mysql user like this:
MariaDB [(none)]> grant all on oozie.* TO 'oozie'@'host.company.com' IDENTIFIED BY 'secretpassword';
Created on 07-08-2016 09:14 AM - edited 07-08-2016 09:15 AM
Well, not really a solution, but after trying various combinations I was able to install and start the Oozie process. It worked after I created a mysql user like this:
MariaDB [(none)]> grant all on oozie.* TO 'oozie'@'host.company.com' IDENTIFIED BY 'secretpassword';