O banco de dados Mysql tem algumas idiossincrasias irritantes, como é o fato de somente o usuário root entrar no phpmyadmin. Por este motivo, damos aqui o roteiro para autorizar outro usuário a entrar no phpmyadmin:
root@kubuntu:/etc/mysql# mysql -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 59
Server version: 5.5.31-0ubuntu0.12.10.1 (Ubuntu)
Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> UPDATE mysql.user SET Password=PASSWORD('sua senha') WHERE User='nome do usuário';
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
Uma das falhas dos artigos de internet é colocar a senha sem a intermediação do comando PASSWORD do mysql, principalmente os sites em português.