AWS 上的 Web 托管 - 我们在哪里创建数据库以及如何将 S3 链接到 EC2

发布于 2024-10-31 06:00:01 字数 161 浏览 1 评论 0原文

我通常将网络主机与 cpanel 一起使用。 我正在尝试一个更大规模的网站,所以我想尝试一下 AWS。 我一直在谷歌搜索并阅读文档,但仍然找不到让我的网站上线的分步指南。

我已将所有文件转移到 S3 我该如何使用 EC2? 如何创建 mySQL 数据库?

感谢您的帮助。 大卫

I usually use webhosts with cpanel.
I'm trying a larger scale website so I thought I'll give AWS a try.
I've been googling and reading the documentations but still can't find a step by step guide to get my website live.

I've transferred all my files to S3
what do I do with EC2?
How do I create a mySQL database?

Thank you for your help.
David

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

娇女薄笑 2024-11-07 06:00:01

对于设置 MySQL 数据库,有两个选项:

  1. 在您的 EC2 实例中设置 MySQL。这与我们在正常情况下所做的相同。

  2. 使用 Amazon RDS 作为数据库。启动 Amazon RDS 实例并向 RDS 安全组授予 EC2 安全组权限。使用端点名称访问新创建的 RDS 实例。拥有RDS实例的好处是您不必担心备份和版本升级。

将 EBS 卷附加到您的 EC2 实例并将所有内容存储在其中。 EBS 卷可以即时附加。即使 EC2 实例崩溃,您的数据仍然存在。我们可以创建EBS卷的快照并将其存储在S3中进行备份。

问候,
桑克特·丹吉

For setting MySQL database, there are two options :

  1. Setup MySQL in your EC2 instance. This is same like as we do in normal scenario.

  2. Make use of Amazon RDS for database. Launch an Amazon RDS instance and give EC2 security group permissions to RDS security group. Access the newly created RDS instance by making use of endpoint name. Advantage of having RDS instance is you don't have to worry about backups and version upgrades.

Attach an EBS volume to your EC2 instance and store everything in that. EBS volumes can be attached on the fly. Your data persists even if EC2 instance crashes out. We can create snapshots of EBS volume and store them in S3 for backups.

Regards,
Sanket Dangi

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文