Posts

Showing posts with the label aws

Connect Filezilla with Amazon EC2 Ubuntu Server

In this quick guide we will learn how to connect to your amazon aws ec2 ubuntu server using a FTP client like Filezilla. 1. first make sure filezilla is installed sudo apt-get install filezilla Read more »

Run Python SimpleHttpServer on Amazon AWS EC2

Image
With Python's SimpleHTTPServer you can quickly setup a webserver without any hassle. In order to use it, you don't need to install or configure anything.. you just need to have python installed on your server. Step 1: Open up your AWS console and in your instance security group make the Inbound & Outbound settings like shown in the sceenshots below Step 2: Login into your remote server via ssh example: aman@vostro:~$ ssh -i yourkeyfile.pem ubuntu@your-server-ip Read more »