AWS 上的 Web 托管 - 我们在哪里创建数据库以及如何将 S3 链接到 EC2
我通常将网络主机与 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于设置 MySQL 数据库,有两个选项:
在您的 EC2 实例中设置 MySQL。这与我们在正常情况下所做的相同。
使用 Amazon RDS 作为数据库。启动 Amazon RDS 实例并向 RDS 安全组授予 EC2 安全组权限。使用端点名称访问新创建的 RDS 实例。拥有RDS实例的好处是您不必担心备份和版本升级。
将 EBS 卷附加到您的 EC2 实例并将所有内容存储在其中。 EBS 卷可以即时附加。即使 EC2 实例崩溃,您的数据仍然存在。我们可以创建EBS卷的快照并将其存储在S3中进行备份。
问候,
桑克特·丹吉
For setting MySQL database, there are two options :
Setup MySQL in your EC2 instance. This is same like as we do in normal scenario.
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