配置 phpMyAdmin 以连接到另一个 MySql 服务器

配置 phpMyAdmin 以连接到另一个 MySql 服务器

我已经在笔记本电脑上安装了 WAMP 服务器,为了简单起见,我想配置 phpMyAdmin 以连接到mysql 服务器在另一台机器上,以便我可以转储数据库表。

如果这是可能的(我相信是的),有谁知道 phpMyAdmin 设置文件位于哪里?

我的笔记本电脑上的 wamp 位置是C:\wamp。我注意到了,C:\wamp\apps\phpmyadmin3.5.1但是里面有很多 php 脚本。我应该修改哪一个?

答案1

PHPMyAdmin的配置文件位于根目录中,名为配置.inc.php为了配置要连接的服务器,您可以检查这一页了解更多信息。

以下是服务器配置的示例:

$i++;

/* First server */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['host'] = 'mysql1.example.net';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['AllowNoPassword'] = false;

$i++;

/* Second server */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['host'] = 'mysql2.example.net';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['AllowNoPassword'] = false;

相关内容