Amazon ec2 and s3 [duplicate]
Possible Duplicate:
How we can mount amazon s3 on amazon ec2
Hi,
I have one Amazon ec2 account and Amazon s3 account. Now I want to store some files in s3 and want to retrieve these files for some computation in ec2. my question is how we can upload files into the buckets o开发者_C百科f s3 and how we can access these files from ec2 . how we can make a connection between these two.how we locate s3?
Everything is done through standard HTTP methods: GET, PUT, etc.
Amazon has produced some very clear documentation explaining how to work with S3: http://docs.amazonwebservices.com/AmazonS3/latest/dev/
There are also open source libraries published for today's mainstream languages (PHP, .NET, Java, Ruby, Python, etc). These can greatly reduce your development time, however it helps to read throught the AWS docs to know what's happening behind the scenes (especially when something breaks).
精彩评论