if you have created your Amazon AWS EC2 instance, you can now access it on the web using your given public ip or public DNS (something like ec2-54-36-73-206.us-west-2.compute.amazonaws.com), you can find these in the description of the instance. But you…
Category: aws
How to setup a Static IP (Elastic IP) Address for AWS EC2
When you create an Amazon AWS EC2 instance, you are given a Public IP which you can use for remote login via SSH or Putty and of course to access on your browser. But the problem is that the Public…
How to install Apache2 Server in AWS EC2 Linux
After you have created and launched your EC2 instance you must be wondering what to do next?if you enter your instance ip in your web browser nothing will show because you need to install a server to see some action!…
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 2. open up filezilla and navigate…
Run Python SimpleHttpServer on Amazon AWS EC2
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…