EC2实例的最佳存储结构?
我正在 EC2 中开发一个网站,并且在原始 /opt/lampp
文件夹中有一个 lampp 服务器。问题是我存储了与网站相关的所有图像,包括用户的个人资料图像(/opt/lampp/htdocs
)。我怀疑这是最有效的方法吗?我的 MySQL 服务器中有图像的链接。
我实际上不知道 Amazon EBS 和 Amazon S3 是什么,我该如何使用它?
I'm developing a website in EC2 and I have a lampp server in the original /opt/lampp
folder. The thing is that I store all my images related to the website including users' profile images there(/opt/lampp/htdocs
). I doubt this is the most efficient way? I have links to the images in my MySQL server.
I actually have no idea of what Amazon EBS and Amazon S3 is, how can I utulize it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
EBS 就像一个外部 USB 硬盘。您可以轻松访问文件系统(/mnt/)中的内容。
S3更像是一个基于API的云存储。您需要做更多的工作才能将其集成到您的系统中。
你在这里有一个很好的总结:
http://www.difference Between.net/ technology/internet/difference- Between-amazon-s3-and-amazon-ebs/
Google 有很多关于此的信息。
EBS is like an external usb hard drive. You can easily access content from filesystem (/mnt/).
S3 is more like an API based cloud storage. You'll have much more work to integrate it into your system.
You have a pretty good summary here :
http://www.differencebetween.net/technology/internet/difference-between-amazon-s3-and-amazon-ebs/
Google has a lot of infos about this.