Operations 16 min read

Linux Ops Essentials: Gray Release, DNS, RabbitMQ, LVS, MySQL & Keepalived

This article explains key Linux operations concepts such as gray release deployment, DNS resolution steps, RabbitMQ messaging, Keepalived high‑availability mechanisms, LVS load‑balancing modes, MySQL lock troubleshooting, replication lag mitigation, root password reset, backup tools, and compares Nginx, LVS, and HAProxy.

MaGe Linux Operations
MaGe Linux Operations
MaGe Linux Operations
Linux Ops Essentials: Gray Release, DNS, RabbitMQ, LVS, MySQL & Keepalived

What is Gray Release?

Gray release is a smooth transition deployment method between black and white, allowing gradual rollout. AB testing is a type of gray release where a portion of users see version A and the rest see version B, expanding B if no objections.

DNS Resolution Process

When accessing www.baidu.com, the system checks the local hosts file, then the configured DNS server, then root servers, followed by TLD, second‑level, and third‑level name servers until the final IP is obtained and cached.

What is RabbitMQ?

RabbitMQ is a message‑queue middleware that stores messages during transmission, acting as an intermediary between producers and consumers, providing routing and ensuring delivery even if the receiver is temporarily unavailable.

How Keepalived Works

In a virtual router group, the MASTER VRRP router continuously sends VRRP advertisements. BACKUP routers do not send advertisements; if they stop receiving them, the highest‑priority BACKUP takes over as MASTER within less than a second. VRRP packets are encrypted for security.

LVS Load‑Balancing Modes

LVS supports three modes: NAT (VS‑NAT), IP‑tunnel (VS‑TUN), and Direct‑Routing (VS‑DR). Each mode’s principle, advantages, and disadvantages are described.

MySQL InnoDB Lock Diagnosis & Replication Lag Reduction

Use SHOW ENGINE INNODB STATUS and the information_schema tables innodb_trx, innodb_locks, innodb_lock_waits to locate lock issues. To reduce master‑slave replication delay, check hardware, single‑threaded replication, slow queries, network latency, and adjust parameters such as --slave-net-timeout and --master-connect-retry.

Resetting MySQL Root Password

If the current password is known, change it with mysqladmin -u root -p password "new_password" or by updating the mysql.user table. If the password is forgotten, stop MySQL, start it with --skip-grant-tables, and reset the password.

Nginx vs. LVS vs. HAProxy

Summarize advantages and disadvantages of Nginx, LVS, and HAProxy in terms of layer, configuration complexity, performance, health‑check capabilities, and protocol support.

MySQL Backup Tools

Tools include mysqldump, LVM snapshots, tar archives, and Percona XtraBackup for hot physical backups, supporting full and incremental backups.

Keepalived Health‑Check Configuration

Keepalived implements VRRP for high availability and provides health‑check modules (core, check, vrrp). Example configuration:

HTTP_GET|SSL_GET {
    url {
        path /# HTTP/SSL check URL(s)
    }
    digest   # generated with genhash
    status_code 200
}
connect_port 80
connect_timeout 3
nb_get_retry 3
delay_before_retry 2
Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

mysqlDNS
MaGe Linux Operations
Written by

MaGe Linux Operations

Founded in 2009, MaGe Education is a top Chinese high‑end IT training brand. Its graduates earn 12K+ RMB salaries, and the school has trained tens of thousands of students. It offers high‑pay courses in Linux cloud operations, Python full‑stack, automation, data analysis, AI, and Go high‑concurrency architecture. Thanks to quality courses and a solid reputation, it has talent partnerships with numerous internet firms.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.