PHPMyAdmin Default login password

Phpmyadmin

Phpmyadmin Problem Overview


I have done a fresh installation of Fedora 14 and installed the phpMyAdmin module. When I run phpMyAdmin, it asks me for a username and password.

What is the default username and password for phpMyAdmin?

Phpmyadmin Solutions


Solution 1 - Phpmyadmin

Default is:

Username: root

Password: [null]

The Password is set to 'password' in some versions.

Solution 2 - Phpmyadmin

I just installed Fedora 16 (yea, I know it's old and not supported but, I had the CD burnt :) )

Anyway, coming to the solution, this is what I was required to do:

su -
gedit /etc/phpMyAdmin/config.inc.php

if not found... try phpmyadmin - all small caps.

gedit /etc/phpmyadmin/config.inc.php

Locate

$cfg['Servers'][$i]['AllowNoPassword']

and set it to:

$cfg['Servers'][$i]['AllowNoPassword'] = TRUE;

Save it.

Solution 3 - Phpmyadmin

This is asking for your MySQL username and password.

You should enter these details, which will default to "root" and "" (i.e.: nothing) if you've not specified a password.

Solution 4 - Phpmyadmin

If it was installed with plesk (not sure if it's just that, or on the phpmyadmin side: It changes the root user to admin.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionUmar AdilView Question on Stackoverflow
Solution 1 - PhpmyadminSyed QaribView Answer on Stackoverflow
Solution 2 - PhpmyadminKarmaView Answer on Stackoverflow
Solution 3 - PhpmyadminJohn ParkerView Answer on Stackoverflow
Solution 4 - PhpmyadminMaraView Answer on Stackoverflow