Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the login for phpMyAdmin?

I downloaded the most recent version of XAMPP (v.1.7.7) and decided start a database. When I opened phpMyAdmin, it alerts me there is a new version of phpMyAdmin available. I downloaded it from online, and I deleted the old version of phpMyAdmin and replaced it with the current version (v.3.5.1). I opened it up and it came up with a log-in screen. I entered in "root" without a password, but it alerts me I need one. I don't know any password nor I know any alternative log-ins. How would I log-in to enter phpMyAdmin?

like image 792
zeldarulez Avatar asked Jun 02 '12 23:06

zeldarulez


People also ask

What is the login for phpMyAdmin?

You should be able to access phpMyAdmin directly, by browsing to http://127.0.0.1/phpmyadmin. Log in to phpMyAdmin by using the following credentials: Username: root. Password: The same as the application password.

How do I find my phpMyAdmin username and password?

Log into phpMyAdminIn the phpMyAdmin prompt, enter your hostname, username, password, and click Go. phpMyAdmin requires that the domain for your MySQL hostname is Fully Hosted and uses DreamHost's DNS.

What is the username and password for Wamp phpMyAdmin?

Try username = root and password is blank. Hi, it will login into phpmyadmin, but not logged in adminer which is provided by wamp server.


2 Answers

Enabling login without a password, to make it work exactly as before

You'll need to change your configuration file. Open up your XAMPP installation directory, browse to the folder phpmyadmin, and look for a file called config.inc.php. If there isn't one already, you'll first need to copy config.sample.inc.php to config.inc.php. Then, just open config.inc.php and find this line:

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

Change it to:

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

Alternatively, just add a password

Open a command prompt and type this, followed by Enter:

mysqladmin -u root -p pass

When it asks you for the current password, just press Enter again. Then set the new password, and log in to phpMyAdmin using that.

like image 198
Ry- Avatar answered Oct 19 '22 23:10

Ry-


Default is:

Username: root

Password: (just leave it blank)

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

like image 26
CHarris Avatar answered Oct 19 '22 23:10

CHarris