I just installed the latest version of MySQL. Until Now I had it on Windows XP but I wanted to install this on another computer with Windows 7.

Even after configuring everything correctly, the MySQL client won't show up in the Start Folder. So I went to the bin folder of MySQL and tried opening mysql.exe but it would immediately close down.

I then tried opening mysql.exe in cmd & this is what I get

C:\Program Files\MySQL\MySQL Server 5.5\bin>mysql
ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: N O)

Any Ideas how I can get this to work?

link|improve this question

1  
Did you specify any sort of logon credentials for a user when you configured it? root? admin? administrator, etc.? If so, you need to call the prompt with "mysql -u <username> -p" and it will provide you with a prompt to enter your password. Upon successfully entering the password, you should get to the mysql command prompt, prefixed with "mysql>" instead of "C:\whatever>" – Eaglebird Dec 22 '10 at 11:01
Yeah you are right. That did work for me. Thanks. But how do I configure it such that MySQL has its own command window and I can log on just by entering the password. – Gaurav Dec 22 '10 at 12:04
Create a shortcut for it – Mchl Dec 22 '10 at 12:38
I didn't mean a shortcut. How would a shortcut prevent me from first changing the dir to bin & then entering mysql -u root -p everytime. I want to be able to just enter my password like in a regular mysql client. – Gaurav Dec 22 '10 at 20:16
feedback

1 Answer

up vote 5 down vote accepted

Provide username (root) C:\Program Files\MySQL\MySQL Server 5.5\bin>mysql -uroot

Default passsword is blank, but if you set it, you will need to provde password as well

link|improve this answer
I did mysql -u root -p and then it prompted me for password. This seems to have worked. – Gaurav Dec 22 '10 at 10:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.