Jump to content

MySQL 1045 Acces denied


patratel

Recommended Posts

Hi,
I have xampp 1.8.1 on win xp sp3.
I got this error when I try to connect with mysql Client (cmd C:\xampp\mysql\bin\mysql -u root -p)
"ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)"
I can connect with "mysql -u root" (without password) but if I try something, I get access denied.

If I try "mysql -u root -p mysql", I get "ERROR 1049 (4200): Unknown database 'mysql'".
I can connect from phpMyAdmin, and I can do anything there. But in command prompt, when I tried mysqladmin flush privileges (or something else), it says "unknown command" or other errors.
I tried from SQL console in phpMyAdmin to add for root hosts 'root'@'localhost' , 'root'@'127.0.0.1' , 'root'@'::1', 'root'@'%'  with
CREATE USER 'root'@'localhost' IDENTIFIED BY 'some_pass';
GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION;
FLUSH PRIVILEGES;

For 127.0.0.1 I got "#1396 - Operation CREATE USER failed for 'root'@'127.0.0.1' ", for the others worked.

There are few days since I struggle with this thing, I can really use some help. Thanks.

Link to comment
https://forums.phpfreaks.com/topic/278930-mysql-1045-acces-denied/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.