测试phpMyAdmin测试phpMyAdmin是否设置成功,访问这个页面:http://<web-server-ip-addresss>/phpmyadmin
你应该能通过Web界面来记录下任何MySQL用户(比如root)和管理MySQL/MariaDB的数据库/表。
疑难解答这里有一些在CentOS上安装phpMyAdmin的过程中遇到的一些问题解决方法。 当你在浏览器里尝试连接phpMyAdmin页面的时候,你看到"403 Forbidding"错误: You don't have permission to access /phpMyAdmin on this server. 发生这种错误是因为phpMyAdmin默认阻止了IP地址远程连接。要修复这种错误,你需要编辑它的配置文件来允许远程连接。具体操作见上。 当你连接phpMyAdmin页面时,你看见"The configuration file now needs a secret passphrase (blowfish_secret)."信息,并且你无法登录。 要修复这种错误,你需要编辑 /usr/share/phpmyadmin/config.inc.php 这个文件来添加一个随机的blowfish密码,然后重启httpd,如下所示。 - $cfg['blowfish_secret'] = 'kd5G}d33aXDc50!'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
- $ sudo service httpd restart (CentOS 6)
- $ sudo systemctl restart httpd (CentOS 7)
当你连接phpMyAdmin页面时,你看见"Cannot load mcrypt extension. Please check your PHP configuration"错误信息。 要修复这种错误,要安装下面这个包: - $ sudo yum install php-mcrypt
然后重启httpd: - $ sudo service httpd restart (CentOS 6)
- $ sudo systemctl restart httpd (CentOS 7)
via: http://ask.xmodulo.com/install-phpmyadmin-centos.html 译者:ZTinoZ 校对:wxy 本文由 LCTT 原创翻译,Linux中国 荣誉推出 |