1、权限过大,提示配置文件不能有写的权限
I get this error when I try to access localhost/phpmyadmin:
Wrong permissions on configuration file, should not be world writable!
解决办法:
sudo chmod 755 /opt/lampp/phpmyadmin/config.inc.php
OK,success!
2、声明: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地址):
3、登录后提示“配置文件现在需要一个短语密码”:
解决方法:
修改phpMyAdmin/config.inc.php:
$cfg['blowfish_secret'] = 'oimec';//此处的oimec为任意短语,作用cookie认证时作为AES加密算法的密钥
4、登录后提示“phpMyAdmin高级功能尚未完成设置,部分功能激活。”:
解决方法:
将Web服务器中phpMyAdmin/sql/create_tables.sql脚本文件从phpMyAdmin中导入执行。
再次登陆phpMyAdmin,查看已无提示,并且,已经创建“phpmyadmin”数据库。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。