Author: Mohd Muzakkir Saifi

Analyzing data.

How to run the Docker inside the docker container.

Reading Time: 4 minutes Hello Learner, I am back with another blog related to the docker container. In this blog, we will learn How to run the docker in a docker container. So we will use two different ways to do this task.  Docker It is an open platform for developing, shipping, and running applications. Docker enables you to separate your applications from your infrastructure so you can deliver Continue Reading

How to take a snapshot of etcd and restore it on the Kubernetes cluster.

Reading Time: 3 minutes  Hello Leaders, I am back with another topic. Today we will learn about etcd Kubernetes snapshot. Actually, etcd is a database for Kubernetes and it stops all the data of Kubernetes. So today we will see how we can take a snapshot of the etcd and how to restore this in Kubernetes. Basically, Etcd is a very important part of Kubernetes. Etcd stores the all Continue Reading

How to deploy AWS Directory Service using Terraform

Reading Time: 4 minutes AWS Directory Service AWS Directory Service provides multiple ways to use Microsoft Active Directory (AD) with other Aservices. Directories are capable to store data or information about users, groups, and devices, and administrators use them and manage access to information and resources. This Service provides multiple directory choices for customers who want to use existing Microsoft AD. It also offers those same choices to developers Continue Reading

How to Deploy AWS WorkSpaces in AWS using Terraform

Reading Time: 5 minutes Amazon WorkSpaces Amazon WorkSpaces enables you to provision virtual, cloud-based Windows or Linux desktops for your users and that is called WorkSpaces. WorkSpaces eliminates the need to procure and deploy hardware or install the complex or required software. You can quickly add or remove users as your needs change. Users can access their virtual desktops from multiple devices or web browsers. You can follow this Continue Reading

How to perform different operations on  AWS S3 bucket using Boto3

Reading Time: 3 minutes Hello Readers, I am here with another blog. As we learned new concepts always. In this blog, We are going to learn how to perform operations on the AWS s3 bucket using boto3. Boto3 First of all, We need to know about boto. What is boto??  Boto3 is the Amazon Web Services (AWS) Software Development Kit (SDK) for Python, which allows Python developers to write Continue Reading

How to deploy AWS Redshift Cluster using terraform.

Reading Time: 4 minutes The AWS Redshift service manages all of the settings up, operating, and scaling of a data warehouse. These tasks include provisioning capacity, monitoring and backing up the cluster, and applying patches and upgrades to the Amazon Redshift engine. In this blog, We will create a new VPC and the required resource to create a redshift Cluster in the new VPC. We will create the following Continue Reading

How to run SonarQube using Docker-Compose

Reading Time: 2 minutes SonarQube is static code analyis tool. It can be installed quickly using Docker-compose with fewer manual steps.SonarQube is an automatic code review tool to detect bugs, vulnerabilities, and code smells in your code. It can integrate with your existing workflow to enable continuous code inspection across your project branches and pull requests. You can follow this link: Prerequisite: Docker  Docker-compose What is Docker Compose? Docker Continue Reading

How to deploy AWS DynamoDB table using terraform

Reading Time: 4 minutes Hello Readers, I am here with another blog. In this blog, we will see the steps on how to create a was DynamoDB Table using Terraform. We will create a DynamoDB Table with the “PAY_PER_REQUEST” billing model. DynamoDB AWS DynamoDB is a fully managed NoSQL database service that provides fast and predictable performance with seamless scalability. AWS DynamoDB lets you offload the administrative burdens of Continue Reading

terraform

How to deploy AWS EKS cluster using Terraform

Reading Time: 4 minutes Hello Readers, I hope you all are doing well.  Today we will learn how to deploy the EKS cluster on AWS using terraform. What is EKS? Amazon Elastic Kubernetes Service (Amazon EKS) is a managed service that you can use to run Kubernetes on AWS without installing, operating, and maintaining your own Kubernetes control nodes. Kubernetes is an open-source system for automating the deployment, scaling, Continue Reading

packer

How to use post-processor in packer

Reading Time: 3 minutes Packer Packer is an open-source tool. It allows us to create machine images. Packer can use for multiple platforms from a single source template. A common use case is creating images that can use later in cloud infrastructure. We will use post Provisioner in this blog. In this blog, It can work with JSON as well as HCL language. Hashicorp developed the HCL language. Basically, Continue Reading

gray laptop computer showing html codes in shallow focus photography

How to use Supervisor in linux

Reading Time: 4 minutes In Linux, Supervisor is a client/server system that allows its users to monitor and control a number of processes on Linux or UNIX-like operating systems. Whenever we want, Processes can be stopped and started as a unit. It starts its sub-processes via fork/exec. The operating system gives the signals to Supervisor immediately when a process terminates. This is written in Python but Supervisor does not Continue Reading

Screen Command in Linux

Reading Time: 4 minutes Screen command in Linux , It is a terminal multiplexer. In Linux, the screen command provides the ability to launch and use the multiple shell session with the same single session. Basically, a screen is used when a process takes more time or when we need to run something for a long time. Suppose that we want to run a process for a long time Continue Reading

File Provisioner in Packer

Reading Time: 3 minutes Packer Packer is an open-source tool. It allows us to create machine images. It can be used for multiple platforms from a single source template. A common use case is creating images that can be used later in cloud infrastructure. We will use File Provisioner in this blog. Basically, It can work with JSON as well as HCL language which is developed by Harshicorp. In this Continue Reading