Copyright © 2012 Kaltura Inc.
All Rights Reserved. Designated trademarks and brands are the property of their respective owners.
Use of this web site constitutes acceptance of the Terms of Use and Privacy Policy.
EduVideo.org
Hi all,
I'm trying to install Kaltura CE V5 in CentOS 6.3 with graphic interface.
After i install all prerequisities, i can't install the project, because i have a problem with mysql.
In fact, when the installatoin is progressing , i find that kaltura can't access mysql database and the error is: "ERROR 1045 (28000) at line 1: Access denied for user 'root'@'localhost' (user password : YES).
after searching on the web, i found that the meaning of the log message is the password is wrong, but with the same password, the same login and the same host, i can access to the mysql database. (mysql --host=localhost --user=root --password=root)
Could you help me please to understand this error.
Thank you.
Best regards.
Hi,
I found the error, it was an error in mysql tables, that i resolved by launching the command: mysql_upgrade.
Thank you.
Hi all,
According to the installation log file:
"06.12.2012 22:09:45 INFO Executing mysql -h127.0.0.1 -uroot -proot -P3306 kaltura < /opt/kaltura/app/deployment/final/sql/03.dwh_grants.sql
06.12.2012 22:09:45 ERROR Executing command failed: ERROR 1045 (28000) at line 1: Access denied for user 'root'@'localhost' (using password: YES)".
I tried to execude the sql file content by using phpmyadmin, and when mysql try to execute the first line, it return the error (access denied).
PS: the file content "03.dwh_grants.sql":
GRANT ALL ON *.* TO 'etl'@'localhost' IDENTIFIED BY 'etl';
GRANT ALL ON *.* TO 'etl'@'%' IDENTIFIED BY 'etl';
GRANT SELECT ON *.* TO 'kaltura_read'@'127.0.0.1' IDENTIFIED BY 'kaltura_read';
FLUSH privileges;
COMMIT;
the error:
SQL query:
GRANT ALL ON * . * TO 'etl'@'localhost' IDENTIFIED BY 'etl'
MySQL said: Documentation
#1045 - Access denied for user 'root'@'localhost' (using password: YES)
i hope someone helps me to fix this problem.
Thank you.
Best regards,