我刚刚在我的mac中安装了pma,它可以与localhost db一起使用。 当我尝试访问远程数据库时,我在设置页面中添加了一个服务器,我选择远程数据库作为我的默认数据库。但是当我回到pma的主面板时,我无法在任何地方找到远程数据库(也没有服务器列表) ),我还在研究本地数据库。所以我回到文件系统并检查config.inc.php,配置文件看起来很好。有什么建议吗?
这是我的config.inc.php
<?php
/*
* Generated configuration file
* Generated by: phpMyAdmin 4.4.14.1 setup script
* Date: Thu, 17 Sep 2015 16:47:13 +0000
*/
/* Servers configuration */
$i = 0;
/* Server: RDS test [1] */
$i++;
$cfg['Servers'][$i]['verbose'] = 'RDS test';
$cfg['Servers'][$i]['host'] = 'xxxxxxxxxx';
$cfg['Servers'][$i]['port'] = 3306;
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = 'test';
$cfg['Servers'][$i]['password'] = 'testtest';
/* End of servers configuration */
$cfg['blowfish_secret'] = '55faee8e5e0965.84622566';
$cfg['DefaultLang'] = 'en';
$cfg['ServerDefault'] = 1;
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';
?>