如何使用WAMP登录phpMyAdmin,用户名和密码是什么?


130

phpMyAdmin中的 “ root”一词是什么意思?

每当我localhost/phpmyadmin在地址栏上书写时,都会要求我输入用户名和密码,但我不知道它们是什么。我不记得我在何时何地设置它们。从哪里可以获取我的用户名和密码来登录phpMyAdmin?


4
我做到了 我搜索了很多。这是我看到名字根源很多次的地方。但是他们都在讨论一些不同的问题,而我从来没有看到过一行“尝试用户名= root和密码为空”。任何地方,直到我将其发布在这里
穆罕默德·法拉兹

“ root”是Unix和类似Unix的操作系统的管理员。
Michas

Answers:



28
http://localhost/phpmyadmin

用户名:root

密码:

(未设置密码)


15

有时无法使用username = root和登录password,然后可以更改默认设置或重置设置。

打开config.inc.phpphpmyadmin文件夹中的文件

代替

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

更改为:

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

不要指定任何密码,也不要输入以前的用户名,即root

例如

$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';

在我编辑config.inc.php文件后,这对我有用。



0

就我而言

username : root
password : mysql

使用:Wamp服务器3.1.0


0

我安装了Bitnami WAMP Stack 7.1.29-0,并在安装过程中要求输入密码。在这种情况下

username: root
password: <password set by you during install>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.