When I Start Mysql It Shows The Error Window? If I Use Mysqld.exe It Tells That Could Not Connect To Localhost?
I tried to start mysql.exe, But it shown error window.
So i started with mysqld.exe but it says that could not connect to localhost at port 10061.
What should i do?
Tags: "could, Error, Mysql, Mysqld.exe, Shows, Start, Tells, That, When, Window
This entry was posted
on Sunday, August 2nd, 2009 at 10:39 pm and is filed under exe errors.
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.
Mysql is a command line utility, not something you double-click to open in a window. -p
To make it clear:
mysql.exe – command prompt utility to manage your database
mysqld.exe – server process
Sounds to me like mysql server is started. Trying to start another mysqld won’t do anything except tell you that the port is busy
To start the utility, you must open a terminal command prompt in Windows (Start > Run > cmd.exe) then type
mysql.exe -u
then it will prompt you for password to login and administer your databases. If you get an error about port 3306 then you will also have to specify port 10061 to connect to.