Articles in the system_administration category

  1. Resolving Hard Links Issues in Rsync Backups on Mac OS X

    Posted on in system_administration

    Backing up systems efficiently is crucial for data integrity and space management. Using hard links with rsync is a common strategy to conserve disk space. However, macOS can sometimes present challenges with hard links, especially when dealing with external drives. This article revisits the issue of hard links not working …

  2. Understanding Kubernetes: A Comprehensive Guide

    Posted on in system_administration

    Kubernetes has become the de facto standard for container orchestration, enabling organizations to deploy, manage, and scale containerized applications efficiently. Originally developed by Google, Kubernetes is now maintained by the Cloud Native Computing Foundation (CNCF) and has a vibrant, growing community. In this comprehensive guide, we will explore the core …

  3. Implementing a Secure DevOps Pipeline: Best Practices and Tools

    Posted on in system_administration

    In the modern software development landscape, DevOps has become a crucial practice for ensuring rapid delivery of high-quality software. However, with the increasing pace of development, ensuring security throughout the DevOps pipeline is more important than ever. This article will cover best practices and tools for implementing a secure DevOps …

  4. Implementing CI/CD Pipelines with Jenkins: A Step-by-Step Guide

    Posted on in system_administration

    In the world of software development, Continuous Integration (CI) and Continuous Deployment (CD) have become essential practices for delivering high-quality software quickly and efficiently. Jenkins, an open-source automation server, is one of the most popular tools for implementing CI/CD pipelines. This article will guide you through setting up Jenkins …

  5. Introduction to DRBD

    Posted on in system_administration

    DRBD, which stands for Distributed Replicated Block Device, is a software-based, shared-nothing, replicated storage solution for mirroring the content of block devices (such as hard disks, partitions, logical volumes, etc.) between servers. It is often used to build high-availability (HA) clusters and is integrated into the Linux kernel, making it …

  6. FreeBSD TCP Performance Tuning

    Posted on in system_administration

    To enable RFC 1323 Window Scaling and increase the TCP window size to 1 MB on FreeBSD, add the following lines to /etc/sysctl.conf and reboot.

    net.inet.tcp.rfc1323=1  
    kern.ipc.maxsockbuf=16777216  
    net.inet.tcp.sendspace=1048576  
    net.inet.tcp.recvspace=1048576
    

    You can make these …

  7. Algorithms For TCP Congestion Control

    Posted on in system_administration

    Note: Although this is a continuation of the TCP Performance Tuning article series, it's also valuable as a standalone reference.

    This list includes a mix of both well-established and newer algorithms, reflecting the ongoing advancements in TCP congestion control research and deployment. Algorithms like CUBIC and BBR are particularly notable …

  8. Optimizing Website Performance: Benefits of Using Gzip with Nginx

    Posted on in system_administration

    In today's fast-paced digital landscape, website performance is paramount. Users demand speedy loading times, and search engines reward fast-loading websites with higher rankings. As a web server, Nginx is renowned for its performance and scalability, but to further enhance your web application's efficiency, it's vital to utilize techniques like Gzip …

Slaptijack's Koding Kraken