I always used to set up application user name ROOT and password XYZ. (sure different from default)
The strange thing is that if my default password is right and didn't change, why phpmyadmin give me this error? Without it I can do anything.
Maybe I can from command line, but I'm not so good with mysql.
How can I be sure that default psw is the right one? ( I suppose that if I login as root and type mysql and it runs, the default is right, isn't it?)
If answer is YES, than with SELECT Host, User FROM mysql.user; I see 6 users, two of them are root. Can I change the password for all these 6 user with this command?
SET PASSWORD FOR ''@'localhost' = PASSWORD('newpwd');
or for the two root user is better to do nothing while they use the default password. ( I'm really confuse about the default password and the password a root user can have.....)