Cloud platform 3.0.6 installation in RHEL 6.2 - SQL error
It looks like your MySQL DB isn't allowing logins from your CCP management node. This can happen if the GRANTs are configured correctly. Make sure the 'root' can connect to your DB from your management node.
You could open it up from any host (not recommended)
mysql> GRANT ALL PRIVILEGES ON . to 'root'@'%' WITH GRANT OPTION;
Or, you could be more specific
mysql> GRANT ALL PRIVILEGES ON . to 'root'@'<IP of CCPmgmt>' WITH GRANT OPTION;
mysql> GRANT ALL PRIVILEGES ON . to 'root'@'<hostname of CCPmgmt>' WITH GRANT OPTION;
--Mike





