我有一个配置了 Amazon Web Services RDS 的数据库。我想访问 PhpMyAdmin 来控制它。
我理解在配置文件中这样做:
/*
* AWS RDS server
*/
$i++;
$cfg['Servers'][$i]['auth_type'] = 'HTTP';
$cfg['Servers'][$i]['hide_db'] = '(mysql|information_schema|phpmyadmin)';
/* Server parameters */
$cfg['Servers'][$i]['host'] = '------.rds.amazonaws.com';
我的问题是,我的家用电脑上有 WAMP 设置。我可以使用它来(远程)访问 Amazon MySQL 数据库吗?还是我必须使用 Amazon 云服务来托管 PhpMyAdmin 文件?
补充:如果我可以在我的家庭 WAMP 服务器上做到这一点,我还需要其他配置参数吗?