帮助中心 >  技术知识库 >  云服务器 >  服务器教程 >  centos下安装配置phpMyAdmin的方法步骤

centos下安装配置phpMyAdmin的方法步骤

2018-05-29 11:55:26 10150

centos下安装配置phpMyAdmin的方法步骤


一、在phpMyAdmin官方网站http://www.landui.com/downloads/  下载源码包

cd /usr/local/src
 
wget https://www.landui.com/phpMyAdmin/4.6.0/phpMyAdmin-4.6.0-all-languages.tar.gz
 
tar zxvf phpMyAdmin-4.6.0-all-languages.tar.gz

二、将phpMyAdmin-4.6.0-all-languages放到web目录下

mv phpMyAdmin-4.6.0-all-languages /usr/local/nginx/html
//重命名
mv phpMyAdmin-4.6.0-all-languages phpMyAdmin

三、配置

cd /usr/local/nginx/html/phpMyAdmin/libraries
vim config.default.php
//修改以下地方
// localhost => 127.0.0.1
$cfg['Servers'][$i]['host'] = '127.0.0.1';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '123456';

四、访问 

本项目在放在nginx测试目录html下 

在浏览器中输入http://www.landui.com/phpMyAdmin 

然后输入用户名、密码即可

五、错误信息 

1、the local server's socket is not correctly configured 

解决方案如下,在配置文件中修改host 

// localhost => 127.0.0.1 
$cfg[‘Servers'][$i][‘host'] = ‘127.0.0.1';


提交成功!非常感谢您的反馈,我们会继续努力做到更好!

这条文档是否有帮助解决问题?

非常抱歉未能帮助到您。为了给您提供更好的服务,我们很需要您进一步的反馈信息:

在文档使用中是否遇到以下问题: