Skip to main content
Kafka Setup with Script Code เคช्เคฐเค•ाเคถिเคค: 03 เคœुเคฒाเคˆ 2026 | เคถ्เคฐेเคฃी: DevOps | เคฒेเค–เค•: เคคเค•เคจीเค•ी เคตिเคถेเคทเคœ्เคž ๐ŸŒ™ Dark Mode Apache Kafka เคเค• เคถเค•्เคคिเคถाเคฒी เคกेเคŸा เคธ्เคŸ्เคฐीเคฎिंเค— เคช्เคฒेเคŸเคซॉเคฐ्เคฎ เคนै। เคฏเคนाँ เค‡เคธे เคธ्เค•्เคฐिเคช्เคŸ เค•ोเคก เค•े เคœ़เคฐिเค เคธेเคŸเค…เคช เค•เคฐเคจे เค•ी เคชूเคฐी เค—ाเค‡เคก เคฆी เค—เคˆ เคนै। Twitter LinkedIn WhatsApp เคšเคฐเคฃ 1: เคธिเคธ्เคŸเคฎ เคœाเคตा เค…เคชเคกेเคŸ เค•ाเคซ्เค•ा เค•े เคฒिเค เคœाเคตा เค†เคตเคถ्เคฏเค• เคนै, เค‡เคธे เค‡ंเคธ्เคŸॉเคฒ เค•เคฐเคจे เค•ी เคธ्เค•्เคฐिเคช्เคŸ เคจीเคšे เคฆी เค—เคˆ เคนै: Copy sudo apt update && sudo apt install default-jdk -y เคšเคฐเคฃ 2: เค•ाเคซ्เค•ा เคกाเค‰เคจเคฒोเคก เคธ्เค•्เคฐिเคช्เคŸ Copy wget https://apache.org tar -xzf kafka_2.13-3.5.0.tgz cd kafka_2.13-3.5.0 เคšเคฐเคฃ 3: เคœ़ूเค•ीเคชเคฐ เค”เคฐ เคธเคฐ्เคตเคฐ เคธ्เคŸाเคฐ्เคŸ เคŸเคฐ्เคฎिเคจเคฒ 1 เคฎें เคœ़ूเค•ीเคชเคฐ เคšเคฒाเคं: ...

Most important and useful 1001 Linux Commands for DevOps Engineers

 If you are looking for an exhaustive reference containing hundreds of Linux commands, you can check out the comprehensive "1001 Linux Commands" document available on Scribd. Alternatively, you can download the highly regarded, full-length book "The Linux Command Line" PDF directly from the Warsaw University of Technology. [1, 2, 3]

While memorizing 1000 commands is unnecessary, mastering the core foundational utilities is vital. [1, 2]
๐Ÿ“‚ File & Directory Management [1]
  • ls: Lists all files and folders inside the current directory.
  • cd: Changes your current working directory path.
  • pwd: Displays the exact folder path you are currently in.
  • mkdir: Creates a brand new, empty directory.
  • rmdir: Deletes an empty directory from the system.
  • cp: Copies files or directories to a different location.
  • mv: Moves or renames files and directories.
  • rm: Permanently removes files or directory trees.
  • touch: Creates an empty file or updates timestamps.
  • ln: Creates a symbolic or hard link to a file. [1, 2, 3, 4, 5]
๐Ÿ“„ Text Processing & Viewing
  • cat: Outputs or concatenates the entire contents of a file.
  • less: Opens a file for interactive, page-by-page viewing.
  • head: Displays the first few lines of a text file.
  • tail: Outputs the last few lines of a file.
  • grep: Searches files for specific text patterns or strings.
  • awk: Highly powerful pattern scanning and processing language.
  • sed: Stream editor used to filter and transform text data.
  • cut: Slices out selected sections from lines of files.
  • sort: Sorts lines of text files alphabetically or numerically.
  • wc: Counts the total lines, words, and bytes in files. [1, 2, 3, 4, 5, 6, 7]
⚙️ System Information & Monitoring
  • uname: Prints detailed system, kernel, and OS architecture information.
  • uptime: Shows how long the machine has been running smoothly.
  • top: Displays active system processes and real-time resource use.
  • htop: Provides an interactive, user-friendly system process viewer.
  • df: Reports available and used disk space on filesystems.
  • du: Estimates and displays file and directory space usage.
  • free: Checks the system's total used and available RAM.
  • hostname: Shows or configures the network name of the system.
  • dmesg: Prints the kernel ring buffer diagnostic messages.
  • ps: Captures a snapshot of currently running processes. [1, 2, 3, 4, 5, 6, 7, 8]
๐ŸŒ Networking & File Transfer
  • ip: Administers network interfaces, routing, and IP addresses.
  • ping: Tests network connectivity to a specific remote host.
  • wget: Downloads files directly from the web using HTTP/FTP.
  • curl: Transfers data to or from a network server.
  • ssh: Securely connects to and logs into remote servers.
  • scp: Copies files securely between hosts over SSH networks.
  • netstat: Prints network connections, routing tables, and interface statistics.
  • nslookup: Queries internet name servers interactively for DNS records.
  • dig: Gathers detailed DNS information from domain names.
  • ifconfig: Legacy tool used to view and configure network interfaces. [1, 2, 3, 4, 5]
๐Ÿ”’ Permissions & User Management
  • chmod: Modifies file or directory read, write, and execute permissions.
  • chown: Adjusts file or directory owners and group ownerships.
  • sudo: Executes a terminal command with elevated administrative privileges.
  • useradd: Creates a brand new user account on the machine.
  • usermod: Modifies an existing user account's properties.
  • userdel: Deletes a user account and associated system files.
  • passwd: Updates or changes a user account's login password.
  • whoami: Displays the exact username of the current session.
  • id: Prints the real user and group ID numbers.
  • chgrp: Changes the group ownership of files or folders. [1, 2, 3, 4, 5, 6]
๐Ÿ“ฆ Archiving & Compression
  • tar: Creates, maintains, and extracts tape archive file collections.
  • gzip: Compresses files using the standard GNU zip algorithm.
  • gunzip: Decompresses files previously compressed using gzip utility.
  • zip: Packages and compresses files into a zip archive structure.
  • unzip: Extracts packed files from a standard zip archive file. [1, 2, 3, 4, 5]
๐Ÿ› ️ Official Quick-Reference Guides
For shorter, printer-friendly reference options to keep on your desk, you can save these verified official sheets: [1]

Comments

Popular posts from this blog

เคฆेเคตोเคช्เคธ เค•ी เคชเคข़ाเคˆ เค•ैเคธे เค•เคฐें?

 DevOps (เคกेเคตเค‘เคช्เคธ) เคเค• เคเคธा เคคเคฐीเค•ा เคนै เคœो เคธॉเคซ्เคŸเคตेเคฏเคฐ เคกेเคตเคฒเคชเคฎेंเคŸ (Dev) เค”เคฐ IT เค‘เคชเคฐेเคถเคจ्เคธ (Ops) เค•ो เคเค• เคธाเคฅ เคฒाเคคा เคนै। เค‡เคธเค•ा เคฎुเค–्เคฏ เคฒเค•्เคท्เคฏ เคธॉเคซ्เคŸเคตेเคฏเคฐ เคฌเคจाเคจे, เคŸेเคธ्เคŸ เค•เคฐเคจे เค”เคฐ เคกिเคฒीเคตเคฐ เค•เคฐเคจे เค•ी เคช्เคฐเค•्เคฐिเคฏा เค•ो เคคेเคœ เค”เคฐ เค…เคงिเค• เคตिเคถ्เคตเคธเคจीเคฏ เคฌเคจाเคจा เคนै। DevOps เค•ी เคชเคข़ाเคˆ เค•े เคฒिเค เค†เคช เคจीเคšे เคฆिเค เค—เค เคธ्เคŸेเคช्เคธ เค•ो เคซॉเคฒो เค•เคฐ เคธเค•เคคे เคนैं: 1. เคฎूเคฒเคญूเคค เค…เคตเคงाเคฐเคฃाเค“ं เค•ो เคธเคฎเคें เคธเคฌเคธे เคชเคนเคฒे, เค†เคชเค•ो DevOps เค•्เคฏा เคนै, เคฏเคน เค•्เคฏों เคฎเคนเคค्เคตเคชूเคฐ्เคฃ เคนै, เค”เคฐ เค‡เคธเค•े เคฎुเค–्เคฏ เคšเคฐเคฃ (เคœैเคธे เค•ंเคŸीเคจ्เคฏूเค…เคธ เค‡ंเคŸीเค—्เคฐेเคถเคจ, เค•ंเคŸीเคจ्เคฏूเค…เคธ เคกिเคฒीเคตเคฐी, เคฎॉเคจिเคŸเคฐिंเค—) เค•ो เคธเคฎเคเคจा เคนोเค—ा। DevOps เคเคœाเค‡เคฒ เคฎेเคฅोเคกोเคฒॉเคœी (Agile methodology) เคธे เคฌเคนुเคค เคช्เคฐेเคฐिเคค เคนै, เค‡เคธเคฒिเค เคเคœाเค‡เคฒ เค•े เคธिเคฆ्เคงांเคคों เค•ो เคธเคฎเคเคจा เคญी เคฎเคฆเคฆเค—ाเคฐ เคนोเค—ा। 2. เค†เคตเคถ्เคฏเค• เคธ्เค•िเคฒ्เคธ เค”เคฐ เคŸूเคฒ्เคธ เคธीเค–ें DevOps เค‡ंเคœीเคจिเคฏเคฐ เคฌเคจเคจे เค•े เคฒिเค เค•ुเค› เคช्เคฐเคฎुเค– เคธ्เค•िเคฒ्เคธ เค”เคฐ เคŸूเคฒ्เคธ เคฎें เคฎเคนाเคฐเคค เคนाเคธिเคฒ เค•เคฐเคจी เคนोเค—ी:  * เคช्เคฐोเค—्เคฐाเคฎिंเค— เคธ्เค•िเคฒ्เคธ (Programming Skills): เค•เคฎ เคธे เค•เคฎ เคเค• เคธ्เค•्เคฐिเคช्เคŸिंเค— เคญाเคทा (เคœैเคธे Python, Bash, Ruby) เค•ा เคœ्เคžाเคจ เค†เคตเคถ्เคฏเค• เคนै, เค•्เคฏोंเค•ि เค‘เคŸोเคฎेเคถเคจ เคฎें เค‡เคจเค•ा เค‰เคชเคฏोเค— เคนोเคคा เคนै। Java, JavaScript, เคฏा SQL เค•ा เคœ्เคžाเคจ เคญी เคซाเคฏเคฆेเคฎंเคฆ เคนो เคธเค•เคคा เคนै।  * Linux/Unix: เค‘เคชเคฐेเคŸिंเค— เคธिเคธ्เคŸเคฎ (OS) เค•ी เค—เคนเคฐी เคธเคฎเค, เค–ाเคธเค•เคฐ Linux เค•เคฎांเคก-เคฒाเค‡เคจ เค”เคฐ เคซाเค‡...

What modifications are required in Jenkins after changing the public IP address?

When you change the public IP address of a server running Jenkins , several modifications and checks are required to ensure Jenkins continues to function properly and remains accessible. Here’s a list of key updates you might need to make: ๐Ÿ”ง 1. Update Jenkins URL Configuration: Why : Jenkins uses its root URL for things like generating links in email notifications, webhook callbacks, and UI redirects.

How to setup host based routing in eks with ingress controller ?

Of course. To set up host-based routing in EKS, you define an Ingress resource with multiple rules. Each rule specifies a hostname (e.g., app1.example.com) and maps it to a corresponding backend Service. The AWS Load Balancer Controller reads this resource and provisions an Application Load Balancer (ALB) to route traffic based on the Host header of incoming requests. Here’s a complete guide. Prerequisites A running Amazon EKS cluster. kubectl configured to connect to your cluster. The AWS Load Balancer Controller installed in your cluster. This is the standard Ingress controller for EKS. A registered domain name (e.g., your-domain.com) that you can manage. Step 1: Deploy Sample Applications First, let's deploy two different applications to route traffic to: a "coffee" app ☕ and a "tea" app ๐Ÿต. Each application will have a Deployment and a Service. Save the following YAML as apps.yaml: # apps.yaml # --- Coffee App --- apiVersion: apps/v1 kind: Deployment metadat...