I have installed mysql as follows:
Server: MySQL Server 5.4
Version 5.4.1
Service name MySQL
Config file C:\Program Files\MySQL\MySQL Server 5.4\my.ini
what should I write intead of localhost]
Main Topics
Browse All TopicsI get the following error when trying to convert an ms access database to mtsql
Error connecting to destination database.
Connection: Provider=MSDASQL.1;Driver=
Program Version: 3.0.0.117
ODBC Version: 5.1.4.0
Function: modMySql.MoveData2MySql
Error: -2147467259
Reason: [MySQL][ODBC 5.1 Driver]Can't connect to MySQL server on 'localhost' (10061)
How do I resolve that
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
It mean there can be following possible problems.
1. Login Credentials are wrong
2. MySql is not accepting the connection from localhost
for this need to run following commands in mysql
GRANT ALL ON *.* TO 'root'@'localhost' IDENTIFIED BY 'newpassword';
FLUSH PRIVILEGES
After that try to login with User root and new password.
Thanks
Business Accounts
Answer for Membership
by: lucas911Posted on 2009-07-24 at 13:27:00ID: 24938793
do you have mysql installed on your computer? If so try passing the ip address of your computer instead of localhost.