phpMyAdmin 初始用户名 密码

1. phpMyAdmin 文件下 将config.sample.inc.php  复制一份 改名为config.inc.php

 默认情况下 用户名是 root

密码是 空

直接就能登录了

我改了几行代码,

测试是用 root    123456 能登陆

root  空密码也可以登录

//$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = true;

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

 

你可能感兴趣的:(php)