怎么用phpmyadmin连接远程MYSQL数据库
方法一:
(一)、下载phpmyadmin
http://wwwphpmyadminnet/home_page/indexphp
(二)、修改libraries文件夹下的configdefaultphp文件或者phpmyadmin根目录的configincphp文件。
1、查找$cfg['PmaAbsoluteUri'] ,将其值设置为你本地的phpmyadmin路径
2、查找$cfg['Servers'][$i]['host'] , 将其值设置为你mysql数据库地址,例如127001
3、查找$cfg['Servers'][$i]['user'] , 将其值设置为你mysql数据库用户名,例如admin
4、查找$cfg['Servers'][$i]['password'] , 将其值设置为你mysql数据库密码,例如admin
(三)、在本地访问phpmyadmin 可查看远程mysql数据库,phpMyAdmin 331只需要修改 $cfg['Servers'][$i]['host']的值,用户名密码 访问phpmyadmin时输入。
方法二:
1,在浏览器中输入:http://localhost/phpmyadmin/setup/
2,点击“新建服务器” ,填写表单:
服务器名称:主机名称
服务器主机名:主机IP
认证方式:config
config 认证方式的用户名:用户名
config 认证方式的密码:用户密码
3,保存后返回setup界面,点击下载,下载的文件为 configincphp
4,将下载的文件 configincphp 复制到 /usr/share/phpmyadmin/ 目录下
5,编辑 /usr/share/phpmyadmin/configincphp
添加以下代码
/ Server: localhost [1] /
$i++;
$cfg['Servers'][$i]['verbose'] = '主机名称';
$cfg['Servers'][$i]['host'] = '主机IP';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = '用户名';
$cfg['Servers'][$i]['password'] = '密码';
将 “phpMyAdmin/libraries”文件夹下的configdefaultphp文件中的
$cfg['Servers'][$i]['host'] = 'localhost';
修改为
$cfg['Servers'][$i]['host'] = '127001';
试试看行不行
解决方法:
1)修改phpmyadmin 下的configincPHP中的 $cfg['Servers'][$i]['password'] = '';选项
2)修改$cfg['Servers'][$i]['auth_type'] = 'http'; //修改为http
当然,到了这里也许还是会出错,因为这是IE缓存所致,选择IE Internet选项->常规-》清除浏览记录,清除缓存后解决问题
以下是configincphp中有关数据库配置的配置信息:
在phpmyadmin目录中有个configincphp,你可以用记事本打开它,然后在
/ Authentication type and info /这句下面的
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = ''; //数据库密码
$cfg['Servers'][$i]['extension'] = 'mysql';
0条评论