saintlyRook
saintlyRook

Reputation: 495

Can I FTP data into AWS S3?

Is it possible to upload content into S3 using a standard FTP client like FileZilla? I am unsure at the moment how best to get data uploaded in bulk. Thanks

Upvotes: 20

Views: 31880

Answers (2)

petezurich
petezurich

Reputation: 10184

Filezilla Pro now offers S3 connectivity out of the box. It costs 10 USD and works great.

The download is a little bit hard to find. Either you click the promotion banner (if available) or you click "Home" on the FileZilla page, then click on the big grey "Download FileZilla Client" button. In the popup you can choose between the two versions.

enter image description here

To connect to S3 with FileZilla Pro follow these steps:

Open FileZilla Pro's Sitemanager with cmd / str "S" or click on the Sitemanager icon that is on the top left corner of the main window.

  • Create a new site with "New Site".
  • Enter "s3.amazonaws.com" as "Host".
  • Choose "S3- Amazon Simple Storage Service" as protocol.
  • Enter your AWS user name as "User".
  • Enter your AWS password as "Password".
  • Click "Connect" and your good to go.

enter image description here

Upvotes: 4

E.J. Brennan
E.J. Brennan

Reputation: 46859

S3 doesn't support ftp directly, but for the mac, you can use a tool like cyberduck.io and on windows cloudberry has a pretty complete set of tools (including some free ones):

To the best of my knowledge, filezilla doesn't support s3, though I wouldn't be surprised if they do someday.

Upvotes: 24

Related Questions