I have problem in configuring the MySQL 5.5 instance. I have successfully installed the server and now trying to install the instance through configuration wizard. I am getting the following error:

alt text

link|improve this question
Not a programming question, should be on serverfault. – Marc B Dec 26 '10 at 11:01
feedback

migrated from stackoverflow.com Dec 26 '10 at 13:43

This question came from our site for professional and enthusiast programmers.

1 Answer

this message tells, that the client cannot connect to the mysql on local host...

this can have several reasons:

  • the client is not running on the same machine as your mysql database ( therefore you have to replace localhost by the machines name, where the database is running )
  • you didn't start the mysql server
  • a firewall ( i.e. windows firewall ) blocked the TCP port 3306
  • your mysql server runs on another port ( check the my.cnf, to see how it got configured )
link|improve this answer
How can I check the firewall settings in Windows XP. – Krishna Dec 26 '10 at 12:45
feedback

Your Answer

 
or
required, but never shown