通过将MySQL的用户名和密码存储在 phpMyAdmin 的配置文件中,
就可以快捷登录 phpMyAdmin
免除输入密码的步骤,
当然最好是部署在内网,
否则将存在很大安全隐患。
配置步骤
1> 复制 config.sample.inc.php 为 config.inc.php
2> 修改代码示例:
/** * Second server */ $i++; /* Authentication type */ $cfg['Servers'][$i]['auth_type'] = 'config'; /* Server parameters */ $cfg['Servers'][$i]['host'] = 'localhost'; $cfg['Servers'][$i]['user'] = ''; $cfg['Servers'][$i]['password'] = ''; $cfg['Servers'][$i]['compress'] = false; $cfg['Servers'][$i]['AllowNoPassword'] = false;
其中 auth_type 由原来的 cookie 修改为 config
第9行和10行增加了 user 和 password 的配置
将用户名和密码写入代码中
在登陆界面选择服务器后点击执行
无需填写用户名和密码就可以登录 phpMyAdmin 了