Page 1 of 1

phpMyAdmin password? [Solved]

PostPosted: 29. June 2012 19:48
by dalawh
Where is the phpMyAdmin password saved?

Re: phpMyAdmin password?

PostPosted: 29. June 2012 20:18
by JonB
OK - a clarification -

phpMyAdmin is a shell for MySQL - ergo - for user(s) [created] and 'root' the passwords are saved in the database 'mysql' in the table 'user'.

PhpMyAdmin also has a 'special user', the PMA Control User. (its used by the phpMyAdmin program itself). Its username is 'pma' in the same table.

Summary: There really isn't "a" phpMyAdmin password. XAMMP comes out of the box with a 'root' MySQL user with no password (as do all fresh mySQL installs). The password you want for phpMyAdmin is probably the password for 'root'. If its a new install that is a null (none). If you set a password for 'root' but cannot recover it/remember what it was, you can use the 'resetroot.bat' in \xampp\mysql'.

Good Luck
8)

Re: phpMyAdmin password?

PostPosted: 29. June 2012 20:32
by dalawh
JonB wrote:OK - a clarification -

phpMyAdmin is a shell for MySQL - ergo - for user(s) [created] and 'root' the passwords are saved in the database 'mysql' in the table 'user'.

PhpMyAdmin also has a 'special user', the PMA Control User. (its used by the phpMyAdmin program itself). Its username is 'pma' in the same table.

Summary: There really isn't "a" phpMyAdmin password. XAMMP comes out of the box with a 'root' MySQL user with no password (as do all fresh mySQL installs). The password you want for phpMyAdmin is probably the password for 'root'. If its a new install that is a null (none). If you set a password for 'root' but cannot recover it/remember what it was, you can use the 'resetroot.bat' in \xampp\mysql'.

Good Luck
8)

Thanks for the explanation. So the password to root is stored in MySQL database?

Re: phpMyAdmin password?

PostPosted: 29. June 2012 21:39
by Altrea
yes it is

Re: phpMyAdmin password?

PostPosted: 29. June 2012 22:05
by dalawh
Altrea wrote:yes it is

Oh okay. Thanks for the help.