Maxat Akbanovmaxat-akbanov.com·Oct 25, 2024Basics of Remote Procedure Call (RPC)Remote Procedure Call (RPC) is a powerful technique used in computer networks and distributed systems to enable a program on one computer (the client) to execute code on a remote system (the server) as if it were a local procedure call. By abstractin...Discuss·30 readsdevopsDevops
Maxat Akbanovmaxat-akbanov.com·Oct 18, 2024AWS Route 53: Latency-based Routing PolicyLatency-based routing (LBR) in AWS Route 53 is designed to route end-user requests to the AWS region that provides the lowest latency. This routing policy ensures that users are connected to the closest and fastest endpoint (in terms of network laten...Discuss·33 readsawsDevops
Maxat Akbanovmaxat-akbanov.com·Oct 17, 2024Securing Secrets with SOPS: An IntroductionSOPS (Secrets OPerationS) is an open-source tool developed by Mozilla for managing secrets — such as passwords, API keys, and confidential configuration data — in a secure and convenient manner. Initially launched in 2015 as a Mozilla project, it has...Discuss·37 readstoolsDevops
Maxat Akbanovmaxat-akbanov.com·Oct 16, 2024AWS Route 53: Weighted Routing PolicyThe Weighted Routing Policy allows you to route DNS query traffic to multiple resources in proportions that you specify. By assigning a relative weight (a numerical value) to each DNS record, you can control the percentage of requests that is directe...Discussawsweighted
Maxat Akbanovmaxat-akbanov.com·Oct 15, 2024AWS Route 53: Simple Routing PolicyAWS Route 53 is Amazon's scalable and highly available Domain Name System (DNS) web service. It translates human-readable domain names (like www.example.com) into IP addresses (like 198.51.100.42) that computers use to connect to each other. Within R...DiscussawsDevops
Maxat Akbanovmaxat-akbanov.com·Oct 14, 2024AWS Route 53 Alias vs CNAME RecordsA CNAME (Canonical Name) record is a type of DNS record used to alias one domain name to another. When a DNS resolver encounters a CNAME record, it will replace the original domain with the target domain and make a new DNS query for the target. For e...Discuss·45 readsawsDevops
Maxat Akbanovmaxat-akbanov.com·Oct 5, 2024Understanding the Risks of Terraform Code RefactoringRefactoring - is the process of restructuring existing code without altering its external behavior or functionality. The goal is to improve the code's internal structure, readability, and maintainability. Refactoring is an essential coding practice t...Discuss·29 readsterraformTerraform
Karlygash Yakiyayevakarlygash-yakiyayeva.dev·Sep 17, 2024Setting the Hostname of Linux Workstation or ServerA hostname is a human-friendly name given to a computer. It is a unique identifier that allows us to identify the machine in various network communications, making it easier to locate and manage devices. Type: hostname To see where it is stored, typ...DiscussLinuxLinux
Anthony Nzukitonynzuki.hashnode.dev·Aug 15, 2024Securely Hosting MySQL with Amazon RDS in Your AWS VPCIntroduction In this blog post, we will explore how to create a MySQL database. We will first have to create a VPC for a couple of reasons: A VPC provides network isolation, meaning your RDS instance is not exposed directly to the internet. You cont...Discuss·135 readsAWS
Karlygash Yakiyayevakarlygash-yakiyayeva.dev·Aug 5, 2024Understanding File and Directory PermissionsFile permissions are core to the security model used by Linux systems. The file permission in Linux specifies how much power each user has over a given file or directory. Viewing Permissions There are two ways of viewing file permissions in Linux: U...DiscussLinuxLinux