AKAtiq Khaninatiq2288.hashnode.dev·Nov 25, 2024 · 2 min readMenu-Driven Health Check for System MonitoringIn this post, I’m going to walk you through a Python-based system health check script that can monitor key system metrics such as disk usage, running services, memory usage, and CPU usage. Additionally, the script automates the process of sending sys...00
AKAtiq Khaninatiq2288.hashnode.dev·Jan 13, 2024 · 3 min readDeploy a MongoDB Cluster with DockerCreate a Docker network. Start three instances of MongoDB. Initiate the Replica Set. Create a Docker Network First, create a Docker network by running the following command: $ docker network create mongodbCluster if the network has been created,...00
AKAtiq Khaninatiq2288.hashnode.dev·Jun 13, 2023 · 3 min readTerraform ---- Managing ResourcesIn this blog, we will see how to define and manage resources. And also we will be creating a Terraform configuration file to define a resource of AWS EC2 instance along with provisioners and life cycle management Create a Terraform configuration file...00
AKAtiq Khaninatiq2288.hashnode.dev·Jun 8, 2023 · 6 min readTerraform Configuration Language (HCL)-HCL syntax used in Terraform Terraform is an Infrastructure as Code (IaC) tool that allows you to define and provision infrastructure resources in a declarative manner. The configuration files in Terraform use a language called HashiCorp Configurati...00
AKAtiq Khaninatiq2288.hashnode.dev·Jun 7, 2023 · 6 min readIntroduction to Terraform and Terraform BasicsWhat is Terraform and how can it help you manage infrastructure as code? Terraform is the infrastructure as a code offering from HashiCorp. It is a tool for building, changing and managing infrastructure in a safe, repeatable way. Operators and Infra...00