声明:MySQL和phpMyAdmin不在同一主机。
登陆时提示“无法登录MySQL服务器”。
解决方法:
若MySQL和phpMyAdmin不在同一主机,需要修改配置文件phpMyAdmin/libraries/config.default.php中的两项:
//allow login to any user entered server in cookie based authentication 配置是否允许你登陆任何使用cookie登陆的服务器。
$cfg['AllowArbitraryServer'] = true;
//MySQL hostname or IP address
$cfg['Servers'][$i]['host'] = '172.16.0.35';//此项也可不修改
修改后再次登陆phpMySQL时会多出“服务器”一项,在此输入MySQL服务器的IP即可(注意:是http服务器访问MySQL的IP地址):
登录后提示“配置文件现在需要一个短语密码”:
解决方法:
修改phpMyAdmin/config.inc.php:
$cfg['blowfish_secret'] = 'oimec';//此处的oimec为任意短语,作用cookie认证时作为AES加密算法的密钥
登录后提示“phpMyAdmin高级功能尚未完成设置,部分功能激活。”:
解决方法:
将Web服务器中phpMyAdmin/sql/create_tables.sql脚本文件从phpMyAdmin中导入执行。
再次登陆phpMyAdmin,查看已无提示,并且,已经创建“phpmyadmin”数据库。