Posts

Showing posts with the label AWS

AWS Load Balancer

Image
 Hi guys!! Today's blog is about AWS Load Balancer. I am going to cover:       1) What is a load balancer ?      2) Types of AWS Elastic Load Balancer (ELB)     3)  AWS Load Balancer setup. So let's begin. What is a Load Balancer? Load balancers are servers that forward the internet traffic to multiple servers (EC2 instances). This helps in spreading the load and no single instance has to deal with all the traffic. A load balancer performs regular health checks of your instance and if any instance fails then no traffic is transferred to it. Using Load balancer is a good idea as your application only knows a single point of access and you are not exposing your backend servers. You can set two kinds of load balancer that are: internal and external. The internal means a load balancer which is private and can not be accessed from the browser/website and external means it can be accessed directly from the browser/website. What are the ty...

Quick steps to launch your first AWS EC2 instance and SSH into it to create a webpage

Image
Hey guys!! If this is your first time working with AWS and you want to launch an EC2 instance, here is what you need to do.  Firstly, you need to have an AWS account, if not, you can create one on  AWS  right now. AWS provides 12 months of free tier for its customers, you can anytime go @  AWS Free Tier and checkout which services are free and for how long. So, I think by now you must have an AWS account. Log in to your account and search for EC2 Dashboard. Now, before creating an EC2 instance make sure you are in the region that is close to you, for me it is Asia Pacific (Mumbai), but you have to choose the region that is according to your location.  Now, when you are in the EC2 Dashboard you see there is 0 running instances, for creating a new instance click on 'Launch Instance'.  1) Choose AMI When you click on 'Launch Instance', you'll land on Choose AMI screen and you will see multiple options for selection. AMI stands for Amazon Machine Image, which...