phpMyAdmin连接远程服务器配置

MySQL

phpMyAdmin登陆界面默认的MySQL服务器只有localhost

如果想连接其他服务器上的MySQL

此时只需要在config.inc.php中增加配置就可以了

首先复制文件 config.sample.inc.php 为 config.inc.php

然后找到下面的代码片段

 

/**
 * First server
 */
$i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = false;

复制为

/**
 * Second server
 */
$i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
$cfg['Servers'][$i]['host'] = '192.168.1.11';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = false;

 

注意第8行,新增加的数据库服务器地址为 192.168.1.11

这样在登录界面就可以看到新增加的服务器了。

操作视频

https://www.bilibili.com/video/BV1Ji4y177xc/