gpt4 book ai didi

mysql - 将 Amazon RDS 与数据库连接

转载 作者:行者123 更新时间:2023-11-29 21:34:47 25 4
gpt4 key购买 nike

我是 Amazon RDS 新手。我对这项服务有很多困惑,甚至在亚马逊网站上也找不到任何合理的东西。

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

我也可以将 Amazon RDS 与我的 Web 应用程序的本地数据库连接吗?

最佳答案

登录亚马逊账户后,连接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'

首先向我展示您的端点
希望这对您有所帮助。

关于mysql - 将 Amazon RDS 与数据库连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35008565/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com