|
Try the following if you receive this error from MySQL while attempting to install phpMyAdmin or configure Ensight
Warning: mysql_connect(): Client does not support authentication protocol requested by server; consider upgrading MySQL
Using command-line tools, run: mysql -u root -p
Modify root to correspond with your designated root user account. Enter the password you created during setup. Once at the mysql> prompt, enter the following SQL statements:
SET PASSWORD = OLD_PASSWORD('your_password'); SET PASSWORD FOR 'root'@'localhost' = OLD_PASSWORD('your_password');
Windows Problems
If you have trouble getting MySQL 4.1 to run as a service on Windows, please see the article below.
http://forums.mysql.com/read.php?11,4460,35804#msg-35804
|