如何设置phpMyAdmin的用户名和密码?

时间:2016-09-25 11:23:37

标签: mysql phpmyadmin

当我转到localhost/phpmyadmin时,它显示如下:

enter image description here

但是如何设置用户名和密码。

我在终端试过了:

mysql -u root -p

但它说:

  

错误1045(28000):用户'root'@'localhost'拒绝访问(使用   密码:是)

如果我输入用户名:root和密码:[blank]

它告诉我:

enter image description here

1 个答案:

答案 0 :(得分:1)

尝试在系统中搜索名为 config.inc.php 的文件,然后使用您选择的编辑器打开它。

然后搜索$cfg['Servers'][$i]['AllowNoPassword']并将其设置为True:$cfg['Servers'][$i]['AllowNoPassword'] = TRUE;注意:仅在您想要在没有密码的情况下登录时才使用它)

或者如果您想使用密码登录(推荐),请找到:

$cfg['Servers'][$i]['password']并设置密码:

$cfg['Servers'][$i]['password'] = 'your_password';