๐— ๐—ผ๐—ฑ๐˜‚๐—น๐—ฒ-๐Ÿฏ :ย ๐—บ๐˜ƒ๐—ป ๐—ฝ๐—ฎ๐—ฐ๐—ธ๐—ฎ๐—ด๐—ฒ : ๐—ง๐—ต๐—ถ๐—ป๐—ด๐˜€ ๐—ฏ๐—ฒ๐—ต๐—ถ๐—ป๐—ฑ ๐—บ๐˜ƒ๐—ป ๐—ฝ๐—ฎ๐—ฐ๐—ธ๐—ฎ๐—ด๐—ฒ

๐— ๐—ผ๐—ฑ๐˜‚๐—น๐—ฒ : ๐Ÿฌ๐Ÿฐ : ๐—บ๐˜ƒ๐—ป ๐—ฝ๐—ฎ๐—ฐ๐—ธ๐—ฎ๐—ด๐—ฒ : ๐—ง๐—ต๐—ถ๐—ป๐—ด๐˜€ ๐—ฏ๐—ฒ๐—ต๐—ถ๐—ป๐—ฑ ๐—บ๐˜ƒ๐—ป ๐—ฝ๐—ฎ๐—ฐ๐—ธ๐—ฎ๐—ด๐—ฒ ” ฬฒ๐š–ฬฒ๐šŸฬฒ๐š—ฬฒโ€‚ฬฒ๐š™ฬฒ๐šŠฬฒ๐šŒฬฒ๐š”ฬฒ๐šŠฬฒ๐šฬฒ๐šŽฬฒ “: Things behind mvn packageMany beginners think Maven is just a command like : mvn package ๐— ๐—ฎ๐˜ƒ๐—ฒ๐—ป ๐—ถ๐˜€ ๐—ฎ ๐—ฏ๐˜‚๐—ถ๐—น๐—ฑ ๐—ฎ๐˜‚๐˜๐—ผ๐—บ๐—ฎ๐˜๐—ถ๐—ผ๐—ป ๐˜๐—ผ๐—ผ๐—น ๐—ณ๐—ผ๐—ฟ ๐—๐—ฎ๐˜ƒ๐—ฎ ๐—ฝ๐—ฟ๐—ผ๐—ท๐—ฒ๐—ฐ๐˜๐˜€. It handles: – Building code – Managing dependencies – Automating the build process In short : ๐— ๐—ฎ๐˜ƒ๐—ฒ๐—ป … Read more

Module_02: Automation in Devops

Why Build Tools are Needed ? Problem:Imagine 100 deverlopers writing the source code using different machines by using different versions of libraries . Problems without build tools : Solution: 2 DEVOPS BUILD TOOL WORKFLOW In DevOps, build tools play a crucial role in automating the process of transforming source code into deployable artifacts and ensuring … Read more

Module -1: Why Build & Deployment Tools Drive Modern DevOps Success ?

In modern DevOps and cloud workflows, build and deployment tools are the backbone of delivering reliable software quickly. Hereโ€™s a breakdown 1) Build : 2) Deploy : 3) How BUILD and DEPLOY Work Together WORKFLOWBuild โ†’ produces the artifact Deploy โ†’ delivers and runs it for users Often automated together in CI/CD pipelines 4) Summary … Read more

Module 2 : How internet works ?

In the world of cloud computing and DevOps, understanding how the internet works is crucial. Whether you’re deploying applications on AWS, managing cloud infrastructure, or orchestrating containers, the internet is the backbone that connects everything. In this post, weโ€™ll break down the concepts step by step and see how AWS leverages the internet for cloud … Read more

Module 1 : IP Address ?

It’s nothing but a unique Identity of a Device on a NetworkEvery device that connects to a network (laptop, phone, server) needs an IP address. Types of IPs: Public and Private 1๏ธ Public IP 2 Private IP Private IP Ranges (RFC1918) Check points

๐Ÿง  Linux Mastery for DevOps – โ€œMake your hands dirty while playing with Linuxโ€

ย Beginner / Basic Linux Administration Task 1: Linux BannerTask 2: Create a Cron JobTask 3: Restrict Cron AccessTask 4: Linux Find CommandTask 5: Linux String Substitute (sed)Task 6: String ReplacementTask 7: Script Execution PermissionsTask 8: File Permission CorrectionTask 9: Timezone AlignmentTask 10: Default GUI Boot ConfigurationTask 11: Process Limit AdjustmentTask 12: Linux ServicesTask 13: Configure … Read more

AWS EC2 instance using MobaXterm (a popular SSH client for Windows)

๐Ÿ”‘ Prerequisites An AWS EC2 instance already running over the console (AWS account) The key pair file (.pem) you downloaded when creating the instance. Public IP address or Public DNS of your EC2 instance. Installed MobaXterm on your machine. Flowchart : ๐Ÿ–ฅ๏ธ Steps to Connect Step 1ย  – Open MobaXterm Start MobaXterm. Go to the … Read more

Git Cheat Sheet

ย 1. Introduction to Git Definition: Git is a distributed version control system that tracks changes in files and allows multiple people to collaborate on a project. Distributed: Each developer has a full copy of the repository, including its history. Benefits: Keeps track of code history, enables collaboration, allows branching and merging, can revert changes safely. … Read more