Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to transload a file from URL to Amazon S3 [closed]

Tags:

amazon-s3

I have a 7GB file I need to download and store in a S3 bucket.

Can I transload it directly to S3 without having to download it to my computer?

like image 316
Victor Avatar asked Mar 21 '12 17:03

Victor


People also ask

How do you make an object in the Amazon S3 bucket viewable by using a URL?

In order to get the URL of an S3 Object via the AWS Console:Navigate to the AWS S3 console and click on your bucket's name. Use the search input to find the object if necessary. Click on the checkbox next to the object's name. Click on the Copy URL button.

What URL format do Amazon S3 buckets end in?

An S3 bucket can be accessed through its URL. The URL format of a bucket is either of two options: http://s3.amazonaws.com/[bucket_name]/ http://[bucket_name].s3.amazonaws.com/


1 Answers

AFAIK this is not possible. Here's another to confirm this: Is it possible to upload to S3 by just providing a URL?

You can make it appear that your files are using a different server to be accessed from or uploaded by playing with the CNAME record though: Using amazon s3, upload files using their servers but URL should appear to be from mine But I don't think this is what you want.

You could however download the file to one of Amazon's EC2 servers and upload from there to S3.

like image 187
Sid Avatar answered Oct 16 '22 19:10

Sid