Create a super user in MySQL 5.5 not working: Permission denied for root@localhost

Posted by GHarping on Server Fault See other posts from Server Fault or by GHarping
Published on 2012-09-28T15:13:08Z Indexed on 2012/09/28 15:39 UTC
Read the original article Hit count: 193

Filed under:
|
|
|

Using CentOS 6, logged in to MySQL as root, entering the command:

create user 'user123' identified by 'pass123';

works fine. But when I try and give that user super user privileges with:

grant all on *.* to 'user123' identified by 'pass123';

I get the error:

ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

Then

select * from mysql.user;

shows that root has Y in all columns, so should have all privileges.

I'd be very grateful if anyone could help me find why root is unable to grant privileges as I can't see why it wouldn't be working.

Thanks

© Server Fault or respective owner

Related posts about mysql

Related posts about centos