Posts

Showing posts from July, 2020

Content

                                                  Content How to create an AWS free Account? Lab 1: To launch amazon Linux EC2 instance Lab 2: To Connect to the instance from Linux client Operating System Lab 3:To Launch amazon windows instance Lab 4: Installing apache in EC2 instance Lab 5: Installing Nginx in EC2 instance Lab 6: Changing Host Name Lab 7: Creating a user and making as a sudoer Lab 8:Assigning an Elastic ip Lab 9:Creating ebs,attach and detach the volumn to the instance Lab 10:Creating an S3 Bucket and creating cross replication in another region Lab 11:Load Balancer Lab 12:Two instances with Application Load Balancer Lab 13:Launching two instances with load Balancer Lab:14 Creating Own VPC  Lab 15: Two instances which classic load Balance with own VPC Lab 16:Two instances with Application load Balancer with own VPC Lab 17: Relational Data B...

Content

                                                  Content How to create an AWS free Account? Lab 1: To launch amazon Linux EC2 instance Lab 2: To Connect to the instance from Linux client Operating System Lab 3:To Launch amazon windows instance Lab 4: Installing apache in EC2 instance Lab 5: Installing Nginx in EC2 instance Lab 6: Changing Host Name Lab 7: Creating a user and making as a sudoer Lab 8:Assigning an Elastic ip Lab 9:Creating ebs,attach and detach the volumn to the instance Lab 10:Creating an S3 Bucket and creating cross replication in another region Lab 11:Load Balancer Lab 12:Two instances with Application Load Balancer Lab 13:Launching two instances with load Balancer Lab:14 Creating Own VPC  Lab 15: Two instances which classic load Balance with own VPC Lab 16:Two instances with Application load Balancer with own VPC Lab 17: Relational Data B...

Lab 31 :Docker Compose

Image
                                         Docker Compose What is the Docker Compose why we use? Docker Compose is a tool for defining and running multi container   Docker applications with Compose,you   use a YAML file to configure you are applications services.Then, with single,command,You create and start all services from your configuration. Compose works in all environments:Production,Staging,Development,testing,as well as  CL work flows. Pre-Requisities : Make sure you have already installed both docker Engine and Docker Compose .Dont need to install python or redis,as both are provided by docker images. Launch an instance and allow 6379 port for Redis.otherwise you get an error. Step1: Login to the server   Install docker and docker compose Htttps://docs.docker.com/compose/install/ Follow the above link to install docker compose Now fi...

Lab 30 : Cloud Formation

Image
                                           Cloud Formation What is  Cloud Formation and why we use?    Cloud Formation is a automation tools which allows you to create the infrastructure of the aws services in less time and manage those resources and we can many times. Lab: Step 1: Pick a template First, you’ll need a template that specifies that you want in your stack.For this step,you use a sample template that is already prepared.The sample template creates a basic wordpress blog that uses a single amazon EC2 instance which a local mysql data base for storage.The template also creates an amazon EC2 security group to control firewall settings the amazon EC2 instance. Step 2:Make sure you have prepared any required items for the stack Before you create a stack from a template,you must ensure that all dependent resources that template requires are avail...

Lab 29 : kubernetes

Image
                                                                 kubernetes What is k8 and why we use? Kubernetes or K8 for short is open source tool kit for building a fault- tolerant ,scalable platform design to automate and centrally manage containerized applications the platform it self can be deployed within almost any infrastructure –in the local network ,server cluster data center any kinds of cloud –public (google cloud and micro soft azure,AWS etc), private hybrid ,or even over the combination of these methods it note worthy that Kubernetes supports the automatic placements and replication of containers over a large number of hosts By default , Kubernetes uses docker to run images and manage containers nevertheless ,K8 can use other engines ,for example ,rkt from the core OS in general Kubernetes is an easier-to-c...