I had the following error while installing kaltura on centos6, any help?

I’m still with some problem while installing kaltura, account kalturadb was created … Any help or guidance on how I can solve the installation?

Installation:
Copying application files to /opt/kaltura
current working dir is /root/kaltura-installer
Copying binaries for linux 64bit
Creating the uninstaller
Replacing configuration tokens in files
Changing permissions of directories and files
Creating and initializing ‘kaltura’ database
Installation failed.
Failed running database script /opt/kaltura/app/deployment/final/sql/03.dwh_grants.sql
Do you want to cleanup? (Y/n)

Installation log:
21.02.2014 10:41:49 USER Creating and initializing ‘kaltura’ database
21.02.2014 10:41:49 INFO Creating database kaltura
21.02.2014 10:41:49 INFO Executing mysql -h127.0.0.1 -ukalturadb -pkaltura -P3306 kaltura < /opt/kaltura/app/deployment/final/sql/01.kaltura_ce_tables.sql
21.02.2014 10:41:49 INFO Executing mysql -h127.0.0.1 -ukalturadb -pkaltura -P3306 kaltura < /opt/kaltura/app/deployment/final/sql/02.kaltura_ce_data.sql
21.02.2014 10:41:50 INFO Executing mysql -h127.0.0.1 -ukalturadb -pkaltura -P3306 kaltura < /opt/kaltura/app/deployment/final/sql/03.dwh_grants.sql
21.02.2014 10:41:50 ERROR Executing command failed: ERROR 1045 (28000) at line 1: Access denied for user ‘kalturadb’@‘localhost’ (using password: YES)
21.02.2014 10:41:50 USER Installation failed.
21.02.2014 10:41:50 USER Failed running database script /opt/kaltura/app/deployment/final/sql/03.dwh_grants.sql
21.02.2014 10:41:50 USER Do you want to cleanup? (Y/n)
21.02.2014 10:42:29 INFO User input is y
21.02.2014 10:42:29 USER Dropping ‘kaltura’ database
21.02.2014 10:42:29 INFO Dropping database kaltura
21.02.2014 10:42:29 USER For assistance, please upload the installation log file to the Kaltura CE forum at kaltura.org

Solved the access denied error on 03.dwh_grants.sql.

mysql -u root
select User from mysql.user;
GRANT ALL ON . to ‘user’@‘localhost’ WITH GRANT OPTION;
flush privileges;

Installation Completed Successfully. Thanks.