Posts

Showing posts from December, 2020

How to setup an Elastic Beanstalk Application on AWS

Elastic Beanstalk is one of the "computer" services in the Amazon Web Services (AWS) cloud. It allows us to easily manage and deploy applications. We don't have to understand or learn the services required to run our application. With Elastic Beanstalk, we only need to upload our application and Elastic Beanstalk takes care of the rest. Elastic Beanstalk supports applications developed in Java, .NET, Go, PHP, Python, Node.js and Ruby. Click here to read the complete version of this article written by me available on howtoforge .

How to setup EC2 Auto Scaling Group (ASG) on AWS

ASG(Auto Scaling Group) feature comes along with EC2 (Elastic Compute Cloud) service of AWS(Amazon Web Services) Cloud. An ASG contains a collection of EC2 instances that are treated as a logical grouping for the purpose of automatic scaling. An ASG enables to use EC2 Auto Scaling features such as health check replacements and scaling policies. It helps to maintain the number of instances in an ASG and automatic scaling of the EC2 Auto Scaling service. To create and ASG, we first need to create a Launch Configuration. Click here to read the complete version of this article written by me available on howtoforge .