Different deployment environments!

Many organizations these days are utilizing numerous deployment environments, which their DevOps groups use to approve the necessary features prior to moving the particular builds to production. Instead, each developer …

Microservices architecture

Microservice architecture is a method of software development to break down the application into small isolated functions which are called “services”. Services are meant to be developed and deployed independently …

AMI – Amazon Machine Image

AMI is basically a template/blueprint of a Virtual instance. AMI provides the information required to launch an instance like Operating System, Application server, etc. When you launch an instance, you …

Introduction to Docker

What is Docker? It is a platform that packages an application and its dependencies together in the form of Container. The Containerization aspect ensures that the application works in any …

Setting up Cron Jobs on AWS EC2

Cron Jobs are scheduled tasks running at a specified frequency. In the AWS EC2/ dedicated server, we have to set up the cron using CLI (with root login access). Steps …