How to upload files to your Amazon AWS instance using the bash shell and sftp.

This is how to copy files from the local machine to your Amazon instance when you are logged into the EC2 instance via SSH. Firstly, connect to the remote AWS instance by SSH. Then use the sftp command to connect back to your local Linux machine. sftp -P 443 [email protected] -P 443 [email protected] Then, you … Read more

Some useful tips for using Amazon Web Services for running a Linux server.

Amazon Web Services is a very powerful way to run a virtualized server in the cloud, but there are some tips that will help you greatly when deploying a server for the first time. SSH access is one. Changing the SSH port from 22 to 443 in the /etc/ssh/sshd_config file will help access when you … Read more