Posts

TASK - 15

Image
TASK - 15 "🔅Create an ansible role myapache to configure Httpd WebServer. 🔅Create another ansible role myloadbalancer to configure HAProxy LB. 🔅We need to combine both of these roles controlling webserver versions   and solving challenge for host ip's  addition  dynamically over  each Managed  Node  in  HAProxy.cfg file." TASK 15.1  Step 1: Create an ansible role myapache to configure Httpd WebServer. Step 2: Create an ansible role myapache # ansible-galaxy role init myapache To see the role, use the command   # ansible-galaxy role list Step 3:Setup the tasks,vars and template file in myapache role TASK 15.2 Step 1:  Create another ansible role myloadbalancer to configure HAProxy LB. Step 2: Create an ansible role myloadbalancer # ansible-galaxy role init myloadbalancer To see the role, use the command # ansible-galaxy role list Step 3:Setup the tasks,vars and template file in myloadbalancer role TASK 15.3 Step 1:  We need t...

AWS SQS

Image
 AWS SQS What is SQS in AWS? Amazon Simple Queue Service (SQS) is a fully managed message queuing service that enables you to decouple and scale microservices, distributed systems, and serverless applications. SQS eliminates the complexity and overhead associated with managing and operating message oriented middleware, and empowers developers to focus on differentiating work. Using SQS, you can send, store, and receive messages between software components at any volume, without losing messages or requiring other services to be available. Get started with SQS in minutes using the AWS console, Command Line Interface or SDK of your choice, and three simple commands. SQS offers two types of message queues. Standard queues offer maximum throughput, best-effort ordering, and at-least-once delivery. SQS FIFO queues are designed to guarantee that messages are processed exactly once, in the exact order that they are sent.   Amazon   SQS   is a message queue service   use...

Ansible and Industries

 Ansible and Industries Ansible  is an  open-source  software  provisioning , configuration management, and  application-deployment  tool enabling  infrastructure as code .  It runs on many  Unix-like  systems, and can configure both Unix-like systems as well as  Microsoft Windows . It includes its own  declarative language  to describe  system configuration . Ansible was written by Michael DeHaan and acquired by  Red Hat  in 2015. Ansible is  agentless , temporarily connecting remotely via  SSH  or  Windows Remote Management  (allowing remote  PowerShell  execution) to do its tasks. Architecture Unlike most configuration-management software, Ansible does not require a single controlling machine where orchestration begins.  Ansible works against multiple systems in your infrastructure by selecting portions of Ansible's inventory, stored as edit-able, version-able ...