AWS & FTP?
- Started
- Last post
- 8 Responses
- spot130
SSH is basically the same protocol as sFTP as both run on port 22 so you can use an FTP client to manage files on an EC2 instance.
With AWS you are using an auth token instead of a username and password but you can connect to the server with an FTP client that supports this. Info here:
https://docs.aws.amazon.com/tran…
The problem you may run into is file permissions as you don’t want to use root for web development so you would need to login first and setup a non-root user and set the permissions accordingly.
- uan0
transmit (https://panic.com/transmit/) has a gui like an ftp client.
- Transmit is an FTP client programdbloc
- for s3 servers (should say)uan
- https://imgur.com/Ky…uan
- oh okdbloc
- section_0140
Another thought... I'd be surprised if AWS didn't have some sort of development environment you setup on your machine. So, you could do a simple "publish" command that uploaded all your changes.
I run bare Ubuntu servers that I've created my own system with, but I've used Google's App Engine in the past. It was super easy to push info to the web. You simply installed their development server to work with on your PC or dev server or whatever, and ran a simple one line command in a terminal to upload any changes.
- dbloc0
you just need console to attach to local host to get into phpmyadmin
- dbloc0
once you get a static IP you can connect to FTP with your username and the pem key
- section_0140
I'm fairly certain they have an upload / drag & drop interface that's similar to an FTP client.
- dbloc0
it's definitely a learning curve and a lot of it has to be done in the console. We just started using AWS about 6 months ago
- mtgentry
I like building websites w/ a FTP client. I can see my files. I can easily add things to the server. It's great.
But I have a client who is using AWS and now I'm out of my element.
Has anyone gone thorough the process of connecting AWS to an FTP client? Is that even recommended? I really don't want to have to connect and do everything programmatically through the console. And AWS itself looks like a maze.
Any help would be much appreciated : )