将Amazon RDS与数据库连接

时间:2016-01-26 07:10:16

标签: mysql amazon-rds

我是Amazon RDS的新手。我对这项服务有很多困惑,即使在亚马逊网站上也无法在互联网上获得任何合理的东西。

我想知道我有一个拥有数据库的Web应用程序。如何将我的数据库与Amazon RDS服务连接。亚马逊网站上的教程没有太多信息。我想要一步一步的教程,但在互联网上找不到任何东西。

我可以将Amazon RDS与我的webapp本地数据库连接吗?

1 个答案:

答案 0 :(得分:0)

登录亚马逊帐户后,连接RDS的步骤:

1) From the dashboard, Select RDS Dashboard, Here you can see the RDS instance
2) Select instance and copy Endpoint string
3) Now go to `/etc/phpmyadmin` and open `config.inc.php` file, change in that file to the endpoint which we have copied. Like below: <br>
<?php
$cfg['Servers'][$i]['auth_type'] = 'cookie';
    /* Server parameters */
    if (empty($dbserver)) $dbserver = 'mydbinstance.casdv4nzvleb.us-west-2.rds.amazonaws.com';
    $cfg['Servers'][$i]['host'] = $dbserver;
?>

4) Final step: change in your DB config file: 'localhost' to that 'mydbinstance.casdv4nzvleb.us-west-2.rds.amazonaws.com'

首先告诉我你的端点
希望这有用。