1、打开配置文件
phpMyAdmin安装目录下 config.inc.php 这个文件
2、配置参数说明
$cfg['Servers'][$i]['auth_type'] ='cookie'; // 授权登陆方式
三种方式可选:cookie,http, config
① config 方式即输入phpMyAdmin 的访问网址即可直接进入,无需输入用户名和密码,是不安全的,不推荐使用。
② 设置cookie,http方式,登录 phpMyAdmin 需要数据用户名和密码进行验证。
$cfg['Servers'][$i]['user'] = 'root'; //mysql用户名
$cfg['Servers'][$i]['password'] = 'root'; //mysql密码
$cfg['DefaultLang'] = 'zh'; //选择语言,zh表示中文
$cfg['Servers'][$i]['AllowNoPassword'] = false; //是否允许空密码登陆
转载自原文链接, 如需删除请联系管理员。
原文链接:phpMyAdmin 配置,转载请注明来源!