In AWS sometimes you could see the error message when try to detach ENI “Error deleting network interface” . It’s normal , we just need to understand the concept . ENI’s are not only created by manually . When you create some resources , AWS will automatically create the backend must required resource. Example when you create EFS it will…
Author: admin
How to login with AWS CLI from Windows
Step1: To login into AWS CLI , first need to install AWS CLI package . The CLI package available for different OS . you can download from amazon website http://docs.aws.amazon.com/cli/latest/userguide/installing.html Step2: Create IAM User account with access key and Secret Key . Dont forget to save , you can not view or download it again. You can create multiple access…
How to attach role to AWS EC2 instance after launching
Few years back this feature was not available in AWS .Once instance launched with particular role you can not replace . Need to launch the instance with required role .This is really challenge task in real time scenario Now Amazon enabled this beautiful features . So you can attache or replace the role to instance anytime even in EC2 instance…
What is Ansible?
Ansible is an open-source IT automation tool. Ansible was written by Michael DeHaan and acquired by Red Hat in 2015 . Ansible supports cross platform , supports all major OS,Physical ,virtual,cloud and network. Ansible bundled with 1000+ modules in built , which will make task easier to run client nodes. Ansible major features are : 1.Configuration Management 2.Software provisioning 3. Application deployment4.Multi-tier…
How to redirect http URL to https in AWS ELB
In AWS ELB we can pass the traffic as HTTP (80) or HTTPS (443) . If you are using HTTPS you have to terminate SSL certificate either in ELB or backend EC2 instance. Normally users will type the URL directly in browser not with HTTP or HTTPS . When user type the URL with HTTPS the request will responded directly…
How to create S3 Bucket in AWS and set permission
Creating S3 bucket very simple . In-fact you can create without any guidance also , like creating folder in google drive ,super easy. But if you are new , you may need some assistance on setting up permissions. The below steps will help you. 1.Login to S3 console page You can find information about any existing bucket . 2.Click “Create…
How to Connect Azure Linux Virtual Machine Serial Console
The Linux Administrators will love this features . When we started moving to cloud applications we started modernized to adapt for cloud . We got so many features ,easy access , fast ,salable etc when compare with on-premises. But what will happen really when some issue with OS and due to some error server got hang etc. Ultimately the fundamental…
How to configure ELB in AWS
Elastic Load Balancing – ELB Elastic Load Balancing automatically distributes traffic across multiple targets – Amazon EC2 instances, containers and IP addresses – in a single Availability Zone or multiple Availability Zones. Amazon offers 3 types of Load Balancer: 1.Classic Load Balancer2.Application Load Balancer3.Network Load Balancer Now lets see how to configure classic load balancer and how to configure Classic…
Amazon Glacier in 5 min
What is Amazon Glacier? Amazon Glacier is an extremely low-cost storage service that provides secure, durable, and flexible storage for data backup and archival.Remember its not a direct backup tool , its a storage service for Backup & Archive.It is managed service from Amazon,so need to worry about capacity planning . You can store unlimited data with low price $0.004 per…
ssh_exchange_identification: read: Connection reset by peer aws
There is lot of possibilities for this type of error . You can try below steps one by one. As a first step check what is really going on while establishing ssh connection. Ex: 1.ssh -v -i /home/cent/keys/my-key.ppk user@192.168.1.2 2. Check the public and private keys are proper ,correct pair , also check the permission of the keys.3.IP of the…
Recovery Time Objective (RTO) and Recovery Point Objective (RPO)
Recovery Time Objective (RTO) The time it takes after a disruption to restore a business process to its service level, as defined by the operational level agreement (OLA) . Simply how much time will take to restore the service. Ex: if a disaster occurs at 12:00 PM (noon) and the RTO is eight hours, the DR process should restore the…
Difference between AWS S3 bucket policies,IAM policies and S3 ACL
It’s some time little bit difficult to set S3 permission properly with so much of options , but in reality each one is available for different purpose . We need to understand which policies or native control mechanism when to use. So before going to the topic for when to use , first we will see what is fundamental concepts…
What is Azure Web App Service?
Azure app service provides fully managed platform to run cloud applications i.e PAAS service . No need to create and manage any virtual servers. Its similar to AWS Elastic Beanstalk services. Database also you can run with Azure App service.Quickly build, deploy, and scale enterprise-grade web, mobile, and API apps running on any platform . Azure App Service is an HTTP-based…
When to use Azure APP Service Plan (ASP ) and Azure App service Environment (ASE)
Sometimes it’s difficult too understand for the first time readers what is the difference between Azure App Service plan ASP and App Service Environment Azure App Service plan is the “Actual package which consists of specific hardware resources and features” , Normally its run on shared resources and Azure global network. ASP plans are like Basic,Standard,Premium etc App Service Environment…
Same resource can be part of multiple resource group in Azure?
You could have come across multiple best practices articles related with Azure Resource Group. The recommendation could be “Keep separate resource group ” for different applications . At the same time there is a pop-up question could arise….How all the resource can be part of 2 resource group . For example Network Vnet how can be part of 2 resource…