Tagged articles

Backup

528 articles · Page 1 of 6
Ray's Galactic Tech
Ray's Galactic Tech
Aug 10, 2026 · Cloud Native

Destruction and Rebirth: Deep Dive into ETCD Backup and Restore for Kubernetes Clusters

This article walks through a real‑world ETCD failure, explains why ETCD is the control‑plane brain, details the three‑layer ETCD architecture, exposes common backup pitfalls, and provides a production‑grade backup‑restore workflow—including snapshot API usage, Go implementation, verification steps, and post‑restore validation—for reliable Kubernetes disaster recovery.

BackupCloud NativeDisaster Recovery
0 likes · 33 min read
Destruction and Rebirth: Deep Dive into ETCD Backup and Restore for Kubernetes Clusters
Ray's Galactic Tech
Ray's Galactic Tech
Aug 1, 2026 · Databases

Beyond CRUD: Full‑Scale Production Guide for MySQL 8.4 LTS

This article walks through a complete production‑grade view of MySQL 8.4 LTS, explaining how a chain of traffic spikes, connection‑pool exhaustion, long transactions and replication lag can cause an avalanche, and then detailing the five core modules, seven production mechanisms, architectural evolution steps, incident post‑mortems, and concrete configuration and code examples to build a resilient MySQL service.

BackupHigh AvailabilityInnoDB
0 likes · 36 min read
Beyond CRUD: Full‑Scale Production Guide for MySQL 8.4 LTS
Raymond Ops
Raymond Ops
Aug 1, 2026 · Databases

Essential MySQL Backup and Recovery Process Every Ops Engineer Must Master

This comprehensive guide walks MySQL administrators through the fundamentals of backup and recovery, covering RPO/RTO concepts, tool comparisons (mysqldump, mydumper, xtrabackup), step‑by‑step scripts for full, incremental, and binlog backups, encryption, compression, troubleshooting, and best‑practice monitoring to ensure data safety and rapid restoration.

BackupDatabase OperationsMySQL
0 likes · 35 min read
Essential MySQL Backup and Recovery Process Every Ops Engineer Must Master
DevOps Operations Practice
DevOps Operations Practice
Jul 30, 2026 · Operations

Essential Velero Guide for Kubernetes Disaster Recovery

This article walks through using Velero to back up, restore, and migrate Kubernetes clusters, covering MinIO installation, Velero client and server setup, storage volume creation, backup location configuration, and execution of backup, restore, and scheduled backup commands.

BackupCloud NativeDisaster Recovery
0 likes · 11 min read
Essential Velero Guide for Kubernetes Disaster Recovery
Ops Community
Ops Community
Jul 29, 2026 · Operations

Terraform State Management: A Pitfall‑Avoidance Guide

This guide walks through Terraform state fundamentals, remote S3 backend setup, versioning, locking, workspace isolation, backup strategies, plan validation, migration, import, address refactoring, and recovery procedures, providing concrete commands and safety checks to prevent accidental resource recreation or loss.

BackupCI/CDMigration
0 likes · 20 min read
Terraform State Management: A Pitfall‑Avoidance Guide
Raymond Ops
Raymond Ops
Jul 28, 2026 · Databases

MySQL Disk Space Explodes: How Binary Logs Become the Hidden Culprit

MySQL servers can trigger alarming disk‑space warnings even when the data directory is small, because unchecked binary logs rapidly consume storage; this article explains the log’s purpose, why it grows, how to diagnose the issue, and provides step‑by‑step cleanup, configuration, replication, monitoring, and recovery best practices.

BackupBinary LogMonitoring
0 likes · 26 min read
MySQL Disk Space Explodes: How Binary Logs Become the Hidden Culprit
AI Architect Hub
AI Architect Hub
Jul 27, 2026 · Databases

Secure Redis Upgrade Guide: Deploy Without Root Using a Regular User and Patch Critical Vulnerabilities

Most online Redis tutorials compile and run as root, creating serious security risks, so this guide walks through a complete, non‑root deployment and upgrade process—including backup, source compilation with a private prefix, configuration reuse, environment setup, post‑upgrade hardening, and a one‑click rollback—to safely patch high‑severity vulnerabilities on common Linux distributions.

BackupConfigurationLinux
0 likes · 7 min read
Secure Redis Upgrade Guide: Deploy Without Root Using a Regular User and Patch Critical Vulnerabilities
dbaplus Community
dbaplus Community
Jul 26, 2026 · Information Security

Why the 30‑Year Guardian of Global Backups Became a Target After Using AI to Patch rsync

The article chronicles how Andrew Tridgell, the retired creator of rsync that safeguards global backups, wrestles with a flood of AI‑generated security reports, rapidly patches critical vulnerabilities, faces community backlash over compatibility issues, and reflects on the risks of relying on a single maintainer for essential infrastructure.

AIBackupopen-source
0 likes · 16 min read
Why the 30‑Year Guardian of Global Backups Became a Target After Using AI to Patch rsync
Golang Shines
Golang Shines
Jul 16, 2026 · Operations

Can You Recover Files Deleted with rm ‑rf? What Works, What Fails, and How to Respond

The article explains that occasional recovery of rm ‑rf deletions is possible, but no single command guarantees full restoration; it outlines the Linux kernel behavior, immediate containment steps, how to examine backups, snapshots, open file descriptors, block‑level imaging, filesystem‑specific tools, verification, and post‑recovery best practices for production environments.

BackupLinuxfile recovery
0 likes · 36 min read
Can You Recover Files Deleted with rm ‑rf? What Works, What Fails, and How to Respond
MaGe Linux Operations
MaGe Linux Operations
Jul 13, 2026 · Operations

Can You Recover Files After an rm -rf Mistake? What Works and What Doesn’t

The article explains that while some data deleted with rm -rf can be recovered, no command guarantees full restoration; it outlines a step‑by‑step process for Linux production environments, from stopping writes and gathering evidence to using backups, snapshots, open‑file extraction, block‑level imaging, and verification.

BackupLinuxfile recovery
0 likes · 34 min read
Can You Recover Files After an rm -rf Mistake? What Works and What Doesn’t
Ops Community
Ops Community
Jul 12, 2026 · Databases

Which MySQL Files Can Be Safely Deleted When Disk Space Is Low?

When MySQL runs out of disk space, the safest approach is to identify the full filesystem, examine data, binlog, temporary and log directories, and use SQL‑based cleanup commands like PURGE BINARY LOGS while never manually removing critical files such as ibdata1, ib_logfile* or active binlogs.

BackupInnoDBMySQL
0 likes · 16 min read
Which MySQL Files Can Be Safely Deleted When Disk Space Is Low?
Raymond Ops
Raymond Ops
Jul 10, 2026 · Operations

Mastering Rsync Incremental Backups: Configuration, Optimization, and Practical Implementation

This guide walks through the fundamentals of rsync incremental backups, explaining the delta algorithm, file comparison rules, optimal parameter choices, real‑world performance comparisons, and step‑by‑step scripts for installation, daily cron jobs, link‑dest rotation, real‑time syncing with inotify, and robust monitoring and error handling.

BackupCronLinux
0 likes · 49 min read
Mastering Rsync Incremental Backups: Configuration, Optimization, and Practical Implementation
Yumin Fish Harvest
Yumin Fish Harvest
Jul 7, 2026 · Databases

Step-by-Step Redis Setup from Scratch: Docker, Docker Compose, Master‑Slave, Sentinel, and Cluster

This tutorial walks a complete beginner through launching a Redis server with Docker, managing it with Docker Compose, adding master‑slave replication, configuring Sentinel for automatic failover, building a 3‑master‑3‑replica Redis Cluster, and provides production‑grade configuration templates and an online‑deployment checklist.

BackupClusterDocker
0 likes · 40 min read
Step-by-Step Redis Setup from Scratch: Docker, Docker Compose, Master‑Slave, Sentinel, and Cluster
Code of Duty
Code of Duty
Jul 5, 2026 · Operations

Beyond Specs: The Hidden Ongoing Costs When Programmers Buy a Server

The article explains that while developers often focus on CPU, memory, and price when purchasing a cloud server, the true long‑term viability depends on renewal fees, bandwidth, disk space, backup, security, and cognitive overhead, all of which affect sustainable maintenance.

Backupbandwidthcloud server
0 likes · 9 min read
Beyond Specs: The Hidden Ongoing Costs When Programmers Buy a Server
Ops Community
Ops Community
Jul 3, 2026 · Operations

10 Essential Shell Scripts to Halve Your Ops Workload

These ten practical Bash scripts automate common sysadmin tasks—disk space checks, log rotation, resource monitoring, backup validation, process guarding, port probing, and more—providing reusable, idempotent solutions with logging, alerting, dry‑run support, and cron integration to streamline operations.

AutomationBackupCron
0 likes · 42 min read
10 Essential Shell Scripts to Halve Your Ops Workload
Linux Tech Enthusiast
Linux Tech Enthusiast
Jul 1, 2026 · Fundamentals

When Vim Crashed and My Unsaved Article Disappeared

The author recounts how a sudden system freeze while using Vim caused an unsaved article to be lost, revealing the danger of disabling Vim's swap files and underscoring the importance of regular saves and backups for any editing or configuration work.

BackupLinuxVim
0 likes · 6 min read
When Vim Crashed and My Unsaved Article Disappeared
Raymond Ops
Raymond Ops
Jun 28, 2026 · Databases

Comprehensive MySQL Replication Lag Troubleshooting Beyond Seconds_Behind_Master

This guide walks through a complete MySQL master‑slave lag diagnosis process, explaining why relying solely on Seconds_Behind_Master is insufficient and showing how to separate IO and SQL thread issues, examine relay logs, detect long transactions, DDL locks, and apply best‑practice configurations and monitoring.

BackupMonitoringMySQL
0 likes · 17 min read
Comprehensive MySQL Replication Lag Troubleshooting Beyond Seconds_Behind_Master
Cloud Architecture
Cloud Architecture
Jun 26, 2026 · Databases

PostgreSQL Backup & Replication Guide: WAL Basics to Production‑Ready HA, DR, and Recovery

This comprehensive guide walks through PostgreSQL's backup and replication architecture, explaining WAL fundamentals, the distinction between backup, high‑availability, disaster‑recovery and CDC, and provides step‑by‑step configurations, performance trade‑offs, monitoring queries, Kubernetes deployment tips, and practical recovery‑drill procedures for production environments.

BackupCDCHA
0 likes · 40 min read
PostgreSQL Backup & Replication Guide: WAL Basics to Production‑Ready HA, DR, and Recovery
Cloud Architecture
Cloud Architecture
Jun 22, 2026 · Databases

Opening the Hood of PostgreSQL WAL: From Transaction Logs to Production‑Grade HA, Replication, and Performance Tuning

This article dissects PostgreSQL's Write‑Ahead Logging (WAL), explaining how it underpins transaction durability, replication, CDC, point‑in‑time recovery, and commit latency, and provides a step‑by‑step guide to architecture design, parameter tuning, troubleshooting, containerization, backup strategies, and operational checklists for production‑grade deployments.

BackupCDCHigh Availability
0 likes · 37 min read
Opening the Hood of PostgreSQL WAL: From Transaction Logs to Production‑Grade HA, Replication, and Performance Tuning
Ops Community
Ops Community
Jun 22, 2026 · Databases

Backup and Recovery: mysqldump / xtrabackup with Point‑In‑Time Recovery

This guide walks through practical MySQL backup and point‑in‑time recovery strategies using logical dumps with mysqldump and physical copies with Percona XtraBackup, covering configuration, command‑line examples, binlog handling, GTID/LSN concepts, incremental backups, restoration scripts, verification steps and common pitfalls for DBAs and DevOps engineers.

BackupDatabasesMySQL
0 likes · 44 min read
Backup and Recovery: mysqldump / xtrabackup with Point‑In‑Time Recovery
Ubuntu
Ubuntu
Jun 17, 2026 · Operations

How to Back Up and Migrate WSL Without Losing Your Development Environment

This guide walks you through exporting and importing WSL distributions, automating backups with PowerShell, managing dotfiles via a bare Git repository, using a migration checklist, and running one‑click scripts so you can switch computers or reinstall systems without losing any configuration or data.

AutomationBackupDotfiles
0 likes · 11 min read
How to Back Up and Migrate WSL Without Losing Your Development Environment
AI Agent Super App
AI Agent Super App
Jun 16, 2026 · Cloud Computing

How I Crashed OpenStack Five Times and Created a Lifesaving Deployment Guide

This comprehensive guide walks you through OpenStack deployment from a single‑node DevStack test to a production‑grade HA cluster with Kolla‑Ansible, covering hardware planning, component configuration, performance tuning, network setup, troubleshooting, monitoring, backup strategies, and useful operational scripts.

BackupDevStackHA
0 likes · 16 min read
How I Crashed OpenStack Five Times and Created a Lifesaving Deployment Guide
Golang Shines
Golang Shines
Jun 14, 2026 · Operations

Recovering Data After an Accidental rm -rf on Linux: Step‑by‑Step Guide

When a routine rm -rf command mistakenly wipes critical backup directories on a Linux server, this article walks through the immediate containment actions, detailed forensic data collection, the underlying file‑system mechanics of ext4 and XFS, and a comprehensive suite of recovery techniques—from lsof‑based live file grabs to extundelete, debugfs, LVM snapshots, and cloud‑disk imaging—ensuring you can restore lost files safely.

BackupData RecoveryLVM
0 likes · 57 min read
Recovering Data After an Accidental rm -rf on Linux: Step‑by‑Step Guide
Ops Community
Ops Community
Jun 11, 2026 · Cloud Native

etcd Operations Handbook: Backup, Restore, Scaling, and Performance Tuning for Kubernetes

This guide explains why mastering etcd is essential for Kubernetes stability and walks through its core concepts, Raft consensus, MVCC storage, deployment, backup and restore procedures, scaling from three to five nodes, performance optimization, monitoring, alerting, troubleshooting, upgrade strategies, security hardening, and real‑world best‑practice recommendations.

BackupKubernetesMonitoring
0 likes · 49 min read
etcd Operations Handbook: Backup, Restore, Scaling, and Performance Tuning for Kubernetes
Raymond Ops
Raymond Ops
Jun 9, 2026 · Cloud Native

Kubernetes Outage? Essential Troubleshooting Guide for Production Clusters

A comprehensive, step‑by‑step guide that explains the most common Kubernetes failure scenarios—from pod crashes and image pull errors to node NotReady and API server timeouts—provides concrete kubectl commands, diagnostic scripts, real‑world case studies, best‑practice recommendations, monitoring metrics, and backup‑restore procedures to keep production clusters healthy.

BackupCluster OperationsKubernetes
0 likes · 37 min read
Kubernetes Outage? Essential Troubleshooting Guide for Production Clusters
Ops Community
Ops Community
Jun 8, 2026 · Databases

Comparing MySQL Backup Solutions: From Tool Mechanics to Production-Ready Engineering Guide

This article analyzes common MySQL backup pitfalls, explains the three backup dimensions and five types, compares major tools such as mysqldump, mysqlpump, mydumper, XtraBackup and cloud snapshots, and provides practical scripts, sizing recommendations, scheduling, monitoring, recovery procedures, and failure case studies for reliable production backup engineering.

BackupMyDumperMySQL
0 likes · 52 min read
Comparing MySQL Backup Solutions: From Tool Mechanics to Production-Ready Engineering Guide
Raymond Ops
Raymond Ops
Jun 6, 2026 · Operations

How to Recover Files After an rm -rf Accident: 3 Proven Methods

This guide explains why Linux's rm command doesn't truly erase data, describes the two recovery windows (process‑held and un‑overwritten blocks), and walks through three practical recovery methods—using /proc FDs, ext4‑specific tools, and generic carving utilities—while also offering prevention strategies such as trash‑cli, snapshots, and robust backup practices.

BackupLVMLinux
0 likes · 46 min read
How to Recover Files After an rm -rf Accident: 3 Proven Methods
MaGe Linux Operations
MaGe Linux Operations
Jun 6, 2026 · Operations

Kubernetes etcd Operations Guide: From Backup & Restore to Cluster Performance Tuning

This comprehensive guide walks Kubernetes operators through the role of etcd, version compatibility, manual and automated backup strategies, disaster‑recovery procedures, performance tuning parameters, monitoring with Prometheus and Grafana, common failure troubleshooting, upgrade paths, and data‑at‑rest encryption, providing concrete commands and best‑practice recommendations for production clusters.

BackupKubernetesMonitoring
0 likes · 47 min read
Kubernetes etcd Operations Guide: From Backup & Restore to Cluster Performance Tuning
Linux Tech Enthusiast
Linux Tech Enthusiast
Jun 4, 2026 · Operations

15 Essential Linux Tools to Boost Your Professional Image

This article introduces fifteen Linux utilities—including FSlint, TestDisk, TrueCrypt, BleachBit, and Wine—detailing their core functions such as duplicate file cleaning, data recovery, disk encryption, system cleanup, and Windows application compatibility, helping users appear more proficient in a professional environment.

BackupLinuxencryption
0 likes · 6 min read
15 Essential Linux Tools to Boost Your Professional Image
AI Agent Super App
AI Agent Super App
May 30, 2026 · Operations

Production-Ready MongoDB 7.0: Single-Node, Replica Set, and Security Hardening Guide

This step‑by‑step guide shows how to install MongoDB 7.0 on Linux, configure a production‑grade replica set, enable keyfile‑based internal authentication, create RBAC users, restrict network access, set system limits, schedule backups, and apply performance‑tuning and monitoring practices to keep the database secure and reliable.

BackupMongoDBReplica Set
0 likes · 15 min read
Production-Ready MongoDB 7.0: Single-Node, Replica Set, and Security Hardening Guide
Ops Community
Ops Community
May 26, 2026 · Databases

How to Safely Clean Up MySQL Binlog When Disk Space Is Critical

This guide walks through why MySQL binlog can fill disks, explains its structure and formats, and provides a step‑by‑step, risk‑aware process—including preparation, safe PURGE commands, automatic expiration settings, verification, and monitoring—to clean binlog without breaking replication or losing data.

BackupMonitoringMySQL
0 likes · 34 min read
How to Safely Clean Up MySQL Binlog When Disk Space Is Critical
MaGe Linux Operations
MaGe Linux Operations
May 23, 2026 · Operations

Avoid Common Pitfalls When Deploying Redis in Production: Memory, Persistence, and Clustering

This guide walks through practical Redis production‑deployment best practices, covering memory limits and eviction policies, RDB/AOF persistence options, security hardening, replication, Sentinel, Cluster setup, monitoring, backup scripts, and troubleshooting common issues such as OOM, replication loss, and latency.

BackupClusteringMemory Management
0 likes · 36 min read
Avoid Common Pitfalls When Deploying Redis in Production: Memory, Persistence, and Clustering
Infinite Tech Management
Infinite Tech Management
May 19, 2026 · Industry Insights

Why Ten Years of Technical Notes Remain Useless to AI—and How to Fix It

After a decade of accumulating thousands of technical notes in Yuque, the author realized that without proper linking, retrieval, and AI‑compatible formatting, those notes become inaccessible, prompting a migration to Obsidian and a four‑layer knowledge‑asset framework that enables recording, linking, AI calling, and closed‑loop iteration.

AIBackupGit
0 likes · 9 min read
Why Ten Years of Technical Notes Remain Useless to AI—and How to Fix It
Cloud Architecture
Cloud Architecture
May 18, 2026 · Databases

Building a High‑Concurrency, Recoverable, Scalable MySQL Backup Platform with MyDumper

The article explains why many teams only have backup files without true recovery capability and walks through designing a production‑grade MySQL backup system using MyDumper, covering consistency snapshots, parallel export, metadata, Kubernetes integration, storage, monitoring, and step‑by‑step scripts for reliable, scalable data protection.

BackupKubernetesMyDumper
0 likes · 48 min read
Building a High‑Concurrency, Recoverable, Scalable MySQL Backup Platform with MyDumper
Cloud Architecture
Cloud Architecture
May 7, 2026 · Cloud Native

Deep Dive into etcd: Architecture, Performance Tuning, and Production Pitfalls for Kubernetes

The article explains why etcd is the single source of truth for Kubernetes, walks through its internal Raft, WAL, MVCC, and watch mechanisms, analyzes real‑world failure cases, and provides concrete architecture designs, hardware recommendations, configuration parameters, monitoring metrics, backup procedures, and best‑practice checklists to run etcd safely in production.

BackupKubernetesMonitoring
0 likes · 43 min read
Deep Dive into etcd: Architecture, Performance Tuning, and Production Pitfalls for Kubernetes
Ops Community
Ops Community
May 7, 2026 · Databases

How to Prevent Redis Data Loss: In‑Depth RDB and AOF Backup Strategies

This article walks operations engineers through the root causes of Redis data loss, explains the inner workings of RDB snapshots and AOF append‑only files, compares their trade‑offs, and provides concrete configuration, backup scripts, recovery procedures, and scenario‑based recommendations to keep data safe while maintaining performance.

AOFBackupConfiguration
0 likes · 34 min read
How to Prevent Redis Data Loss: In‑Depth RDB and AOF Backup Strategies
ITPUB
ITPUB
Apr 27, 2026 · Cloud Native

Why Skipping Backups Makes Kubernetes Operations Impossible

The article explains that running production Kubernetes clusters without regular backup and recovery plans exposes businesses to severe risks such as cluster failures, data loss, and prolonged downtime, and it details practical etcd physical and Velero logical backup strategies to mitigate these threats.

BackupCloud NativeKubernetes
0 likes · 9 min read
Why Skipping Backups Makes Kubernetes Operations Impossible
AI Agent Super App
AI Agent Super App
Apr 19, 2026 · Operations

Linux File Compression & Backup: Complete Guide to tar, gzip, bzip2, xz, zip, rsync, and scp

This tutorial walks through essential Linux commands for archiving, compressing, and transferring files—including tar, gzip, bzip2, xz, zip, rsync, and scp—explaining their options, performance trade‑offs, and practical usage scenarios such as daily backups, cross‑platform sharing, and incremental synchronization.

BackupLinuxfile compression
0 likes · 8 min read
Linux File Compression & Backup: Complete Guide to tar, gzip, bzip2, xz, zip, rsync, and scp
MaGe Linux Operations
MaGe Linux Operations
Apr 18, 2026 · Databases

Master MySQL 8.0 Backup & Recovery: Full Guide with Scripts, Strategies and Best Practices

This comprehensive guide explains why MySQL backup is essential, defines RPO/RTO, compares logical and physical tools, provides ready‑to‑run scripts for full, incremental, binlog, encryption and compression backups, details step‑by‑step recovery procedures, troubleshooting tips and monitoring recommendations for reliable database protection.

AutomationBackupDatabase Administration
0 likes · 35 min read
Master MySQL 8.0 Backup & Recovery: Full Guide with Scripts, Strategies and Best Practices
Cloud Architecture
Cloud Architecture
Apr 17, 2026 · Databases

From Crashing Databases to Zero Data Loss: MySQL Replication Evolution

The article examines common MySQL replication failures, explains why traditional position‑based replication is insufficient, and walks through a step‑by‑step evolution from file/position to GTID, asynchronous to semi‑synchronous, single‑threaded to parallel apply, culminating in a production‑grade architecture that achieves near‑zero data loss.

BackupGTIDHigh Availability
0 likes · 35 min read
From Crashing Databases to Zero Data Loss: MySQL Replication Evolution
MaGe Linux Operations
MaGe Linux Operations
Apr 15, 2026 · Databases

Why MySQL Binary Logs Fill Up Disk Space and How to Fix It

This article explains how MySQL binary logs can rapidly consume disk space, analyzes the root causes such as log format and workload, provides step‑by‑step diagnostics, and offers practical cleanup, configuration, replication, monitoring, and recovery strategies to prevent and resolve the issue.

BackupBinary LogMySQL
0 likes · 21 min read
Why MySQL Binary Logs Fill Up Disk Space and How to Fix It
Golang Shines
Golang Shines
Mar 30, 2026 · Operations

Docker + MySQL: Why They Clash and How to Avoid Hair‑Pulling Pitfalls

This article analyzes common pitfalls when running MySQL inside Docker containers—such as data loss, resource exhaustion, insecure defaults, networking mishaps, and missing backups—and provides concrete, step‑by‑step remedies including volume persistence, resource limits, custom configs, security hardening, and automated backup strategies.

BackupDockerMySQL
0 likes · 11 min read
Docker + MySQL: Why They Clash and How to Avoid Hair‑Pulling Pitfalls
dbaplus Community
dbaplus Community
Mar 23, 2026 · Operations

How a Single AI‑Driven Command Wiped 2.5 Years of Production Data

In this detailed post‑mortem, Alexey Grigorev recounts how using Claude Code to automate a Terraform deployment unintentionally erased his entire production environment and two‑and‑a‑half years of data, exposing the risks of over‑reliance on AI‑driven automation and highlighting essential safeguards.

AIAWSAutomation
0 likes · 11 min read
How a Single AI‑Driven Command Wiped 2.5 Years of Production Data
Linux Tech Enthusiast
Linux Tech Enthusiast
Mar 12, 2026 · Operations

8 Essential Linux Backup Tools to Safeguard Your Data

Regular backups are vital for servers and personal computers, and this guide reviews eight Linux backup applications—Bacula, UrBackup, Clonezilla, Rsync, Déjà Dup, Back In Time, Timeshift, and Amanda—detailing their features, use‑cases, and installation commands.

Backupamandabacula
0 likes · 10 min read
8 Essential Linux Backup Tools to Safeguard Your Data
ShiZhen AI
ShiZhen AI
Mar 12, 2026 · Operations

The Lifesaving Backup Trick 99% of OpenClaw Users Miss

This guide shows how to protect your OpenClaw configuration by treating the ~/.openclaw directory as a snapshot, using a private GitHub repository for secure, versioned backups that let you roll back, recover from loss, or migrate to a new machine in minutes.

AutomationBackupGit
0 likes · 14 min read
The Lifesaving Backup Trick 99% of OpenClaw Users Miss
Old Zhang's AI Learning
Old Zhang's AI Learning
Mar 9, 2026 · Artificial Intelligence

Why You Should Upgrade to OpenClaw v2026.3.8 Today

The v2026.3.8 release of OpenClaw adds official backup commands, improves remote gateway configuration, introduces a configurable Talk silence timeout, refines the TUI and Brave search integration, and fixes numerous stability issues, making the personal AI assistant far more reliable for long‑term use.

AI assistantBackupOpenClaw
0 likes · 11 min read
Why You Should Upgrade to OpenClaw v2026.3.8 Today
Node.js Tech Stack
Node.js Tech Stack
Mar 9, 2026 · Artificial Intelligence

OpenClaw’s Massive v2026.3.7/3.8 Update: Plug‑in Context Engine and Persistent Agents

OpenClaw released two back‑to‑back major versions that add a plug‑in ContextEngine, persistent ACP bindings, GPT‑5.4 and Gemini integration, multi‑stage Docker slim images, SecretRef authentication, a built‑in backup system, and over a dozen security hardenings, marking a comprehensive architecture‑to‑security upgrade.

ACPAI assistantBackup
0 likes · 11 min read
OpenClaw’s Massive v2026.3.7/3.8 Update: Plug‑in Context Engine and Persistent Agents
Ops Community
Ops Community
Mar 8, 2026 · Databases

How to Diagnose and Fix MySQL Production Performance Drops

This comprehensive guide walks you through identifying the root causes of MySQL performance degradation in production, from gathering baseline metrics and analyzing slow‑query logs to examining execution plans, tuning parameters, applying configuration changes, and verifying improvements with concrete monitoring and backup strategies.

BackupMySQLdatabase optimization
0 likes · 30 min read
How to Diagnose and Fix MySQL Production Performance Drops
Ops Community
Ops Community
Mar 3, 2026 · Databases

Master PostgreSQL 17: Installation, Backup, Recovery, and Performance Tuning

This comprehensive guide walks you through PostgreSQL 17 deployment, explains its multi‑process architecture and MVCC model, details environment requirements, shows essential configuration parameters, provides step‑by‑step backup and PITR procedures, demonstrates streaming replication setup, and shares best‑practice tuning, security, and monitoring tips for reliable production use.

BackupDatabase AdministrationHA
0 likes · 24 min read
Master PostgreSQL 17: Installation, Backup, Recovery, and Performance Tuning
MaGe Linux Operations
MaGe Linux Operations
Feb 28, 2026 · Cloud Computing

Deploying MinIO: A Complete Guide to Private S3‑Compatible Object Storage

This guide explains why traditional block and file storage struggle with massive unstructured data, introduces MinIO as a high‑performance, Go‑based S3‑compatible object storage, and provides step‑by‑step instructions for single‑node and erasure‑coded multi‑node deployments, TLS setup, client usage, policies, monitoring, backup, and troubleshooting.

BackupKubernetesMinIO
0 likes · 35 min read
Deploying MinIO: A Complete Guide to Private S3‑Compatible Object Storage
Senior Xiao Ying
Senior Xiao Ying
Feb 27, 2026 · Databases

How to Recover Lost MySQL Data: Physical, Logical, and PITR Backup Guide

This article provides a comprehensive MySQL data‑loss recovery guide, covering logical and physical backup methods, their advantages and drawbacks, detailed command‑line examples, XtraBackup installation, full and incremental backups, compression and streaming, and point‑in‑time recovery using binary logs, along with core backup best‑practice principles.

BackupLogical BackupMySQL
0 likes · 12 min read
How to Recover Lost MySQL Data: Physical, Logical, and PITR Backup Guide
Raymond Ops
Raymond Ops
Feb 5, 2026 · Databases

Mastering Redis Persistence: RDB vs AOF Showdown and Real‑World Optimizations

This comprehensive guide examines why Redis persistence is critical, compares RDB snapshots and AOF logging in depth, provides configuration examples, monitoring scripts, performance benchmarks, real‑world incident analyses, and practical recommendations for selecting and tuning the optimal persistence strategy.

AOFBackupPersistence
0 likes · 23 min read
Mastering Redis Persistence: RDB vs AOF Showdown and Real‑World Optimizations
Ray's Galactic Tech
Ray's Galactic Tech
Jan 24, 2026 · Databases

Redis Persistence Design: From Cache to Reliable Data System

Choosing a Redis persistence strategy requires balancing data reliability, recovery speed, performance impact, and storage cost, and this guide compares RDB, AOF, and hybrid approaches, provides configuration examples, and outlines best practices for production, backup, and Kubernetes deployments.

AOFBackupPersistence
0 likes · 8 min read
Redis Persistence Design: From Cache to Reliable Data System
Raymond Ops
Raymond Ops
Jan 9, 2026 · Databases

Master MongoDB Sharding: From Single Server to Enterprise-Scale Cluster

When a single‑node MongoDB instance can no longer handle tens of millions of records, this guide walks you through the theory, architecture, deployment steps, shard key strategies, performance tuning, monitoring, backup, and troubleshooting needed to build a robust, production‑grade sharded cluster.

BackupDatabase ScalingMongoDB
0 likes · 14 min read
Master MongoDB Sharding: From Single Server to Enterprise-Scale Cluster
Ops Community
Ops Community
Jan 8, 2026 · Fundamentals

How to Choose, Configure, and Monitor RAID for Production Systems

This comprehensive guide walks you through RAID fundamentals, explains each RAID level’s performance and reliability trade‑offs, shows real‑world selection criteria, provides step‑by‑step Linux and hardware RAID configuration scripts, monitoring tools, troubleshooting tips, and best‑practice recommendations for modern storage environments.

BackupLinuxMonitoring
0 likes · 55 min read
How to Choose, Configure, and Monitor RAID for Production Systems
Tencent Architect
Tencent Architect
Jan 7, 2026 · Databases

How Tencent Cloud MongoDB’s Key‑Based Flashback Enables Millisecond‑Level Data Recovery for Games

This article explains Tencent Cloud MongoDB’s backup and restore capabilities, the challenges posed by modern game workloads, and how the industry‑first key‑based flashback feature provides second‑level, fine‑grained, non‑disruptive data recovery, dramatically improving reliability and speed for game operators.

BackupData RecoveryDatabase Architecture
0 likes · 23 min read
How Tencent Cloud MongoDB’s Key‑Based Flashback Enables Millisecond‑Level Data Recovery for Games
Raymond Ops
Raymond Ops
Dec 22, 2025 · Operations

Mastering Production Site Backup: A Multi‑Layer Disaster Recovery Blueprint

After a midnight disk failure that threatened 300,000 users, this article presents a production‑grade, multi‑layer backup architecture with 3‑2‑1 redundancy, RTO ≤30 min and RPO ≤5 min, covering application code, configuration, database (physical and logical), file storage, automated scheduling, monitoring, performance tuning, a real‑world recovery case, and future AI‑driven enhancements.

AutomationBackupDisaster Recovery
0 likes · 15 min read
Mastering Production Site Backup: A Multi‑Layer Disaster Recovery Blueprint
Ray's Galactic Tech
Ray's Galactic Tech
Dec 8, 2025 · Databases

Build a Production-Ready Automated MySQL Backup with mydumper

Learn how to install mydumper on various Linux distributions, use its multithreaded, compressed, and incremental backup features, and deploy a robust Bash script that automates full and incremental MySQL backups, handles encryption, cleanup, logging, notifications, and restoration with myloader.

AutomationBackupCron
0 likes · 10 min read
Build a Production-Ready Automated MySQL Backup with mydumper
Raymond Ops
Raymond Ops
Dec 4, 2025 · Databases

Master MySQL Backups: A Complete Guide to Data Protection and Recovery

This guide explains why MySQL data protection is critical, outlines backup strategies, compares built‑in tools like mysqldump and mysqlpump with third‑party solutions such as Percona XtraBackup, and provides practical scripts, scheduling tips, verification methods, and recovery procedures to ensure reliable, secure database backups.

AutomationBackupDatabase
0 likes · 21 min read
Master MySQL Backups: A Complete Guide to Data Protection and Recovery
Xiao Liu Lab
Xiao Liu Lab
Dec 3, 2025 · Databases

Secure, Efficient MySQL Automated Backup Script – Zero Maintenance

This guide presents a fully automated MySQL backup script that securely filters system databases, compresses backups with gzip, logs each operation, automatically removes expired files, and includes step‑by‑step configuration, deployment, scheduling, troubleshooting, and optimization tips for production environments.

AutomationBackupDatabase
0 likes · 11 min read
Secure, Efficient MySQL Automated Backup Script – Zero Maintenance
dbaplus Community
dbaplus Community
Nov 30, 2025 · Databases

How Uber Scales Database Backup and Recovery to Petabytes

This article explains how Uber built a robust, continuously backed‑up and recoverable database platform that handles tens of petabytes of data, detailing the challenges, architecture, scheduling, backup and restore frameworks, and the technology‑specific snapshot logic that enable fast RPO/RTO at massive scale.

BackupDatabasesRecovery
0 likes · 14 min read
How Uber Scales Database Backup and Recovery to Petabytes
Ops Community
Ops Community
Nov 23, 2025 · Databases

How to Recover Accidentally Dropped MySQL Data in 48 Hours – A Complete Step‑by‑Step Guide

This guide walks you through a full disaster‑recovery workflow for MySQL, covering emergency read‑only switching, pinpointing the deletion time via binlog, preparing a recovery instance, restoring the latest full backup with Xtrabackup or mysqldump, applying incremental binlog changes, verifying data integrity, and safely switching traffic back to the restored database.

BackupData RecoveryDisaster Recovery
0 likes · 42 min read
How to Recover Accidentally Dropped MySQL Data in 48 Hours – A Complete Step‑by‑Step Guide
Raymond Ops
Raymond Ops
Nov 22, 2025 · Operations

Master Rsync Backup: From Basics to Real-World Deployment

This guide walks through the fundamentals of data backup, explains why backups are essential, and provides a comprehensive tutorial on using Rsync—including its concepts, sync modes, configuration, common options, service deployment, and real‑world scenarios such as push/pull transfers, bidirectional sync, and bandwidth‑limited backups.

BackupData synchronizationLinux
0 likes · 16 min read
Master Rsync Backup: From Basics to Real-World Deployment
Liangxu Linux
Liangxu Linux
Nov 20, 2025 · Operations

Avoid the ‘Delete‑Database‑and‑Run’ Nightmare: 10 Fatal Ops Pitfalls Revealed

A real 2018 incident where an ops engineer used rm ‑rf to wipe a production database sparked a deep dive into the high‑risk nature of operations, presenting Gartner statistics, psychological error factors, ten deadly pitfalls with concrete examples, and a comprehensive fault‑tolerance framework to prevent future catastrophes.

AutomationBackupDevOps
0 likes · 23 min read
Avoid the ‘Delete‑Database‑and‑Run’ Nightmare: 10 Fatal Ops Pitfalls Revealed
MaGe Linux Operations
MaGe Linux Operations
Nov 3, 2025 · Operations

Master Git Ops: From Zero to Production-Ready IaC Version Control

This comprehensive guide walks you through Git operations for infrastructure-as-code, covering installation, SSH key setup, repository structuring, branching strategies, sensitive data handling, automation with hooks, backup, audit, monitoring, performance tuning, and security best practices for production environments.

AutomationBackupCI/CD
0 likes · 31 min read
Master Git Ops: From Zero to Production-Ready IaC Version Control
Java Captain
Java Captain
Oct 29, 2025 · Databases

How to Seamlessly Migrate MongoDB to an Isolated Instance with Real-Time Sync

This guide details a step‑by‑step process for migrating a high‑traffic MongoDB app to a dedicated instance, covering full backup, real‑time incremental sync via Change Streams, compensating for missed changes, handling operation ordering, and ensuring zero downtime throughout.

BackupChange StreamsData Migration
0 likes · 11 min read
How to Seamlessly Migrate MongoDB to an Isolated Instance with Real-Time Sync
MaGe Linux Operations
MaGe Linux Operations
Oct 6, 2025 · Operations

Avoid the Fatal Ops Mistakes That Could Ruin Your Career – 10 Critical Pitfalls and How to Prevent Them

Drawing on real-world incidents and Gartner 2023 data, this article reveals ten deadly operational pitfalls—from executing untested commands in production to inadequate backups—and offers concrete technical safeguards, process controls, and cultural practices to help engineers avoid costly errors and protect their careers.

AutomationBackupIncident Prevention
0 likes · 27 min read
Avoid the Fatal Ops Mistakes That Could Ruin Your Career – 10 Critical Pitfalls and How to Prevent Them
MaGe Linux Operations
MaGe Linux Operations
Oct 1, 2025 · Operations

How a Single rm -rf Command Almost Wiped My Data—and the Backup Plan That Saved It

A disastrous rm -rf command erased 2.3 TB of production MySQL data, but a meticulously designed multi‑layer backup strategy—including logical, physical, real‑time, and cloud backups—enabled a 99.4% data recovery within 72 hours, highlighting essential lessons and best‑practice guidelines for reliable data protection.

BackupDisaster RecoveryMySQL
0 likes · 36 min read
How a Single rm -rf Command Almost Wiped My Data—and the Backup Plan That Saved It
Open Source Linux
Open Source Linux
Sep 25, 2025 · Operations

Master NFS in 30 Minutes: Complete Deployment & Performance Guide (2025)

Learn how to design, install, configure, secure, monitor, and optimize a production‑grade NFS service—including step‑by‑step server and client setup, advanced permission controls, performance tuning, automated deployment scripts, backup strategies, and real‑world use cases—so you can reduce file‑sync time by up to 80%.

AutomationBackupLinux
0 likes · 28 min read
Master NFS in 30 Minutes: Complete Deployment & Performance Guide (2025)
ITPUB
ITPUB
Sep 24, 2025 · Databases

Essential Oracle Database Diagnostic Queries and Administration Scripts

This guide compiles over 70 essential Oracle SQL queries, shell commands, and scripts for inspecting version, configuration, tablespace usage, performance metrics, backup details, and cluster status, providing DBAs with a ready‑to‑use reference for comprehensive database health checks.

AdministrationBackupRDBMS
0 likes · 25 min read
Essential Oracle Database Diagnostic Queries and Administration Scripts
Ray's Galactic Tech
Ray's Galactic Tech
Sep 23, 2025 · Databases

Master PostgreSQL: Installation, Configuration, and Performance Tuning Guide

This comprehensive guide walks you through installing PostgreSQL on Linux, Windows, macOS, and Docker, configuring users, databases, and remote access, using daily psql commands, performing backups, applying advanced features like tablespaces and replication, and optimizing performance with key tuning parameters.

BackupConfigurationDatabase
0 likes · 7 min read
Master PostgreSQL: Installation, Configuration, and Performance Tuning Guide
Open Source Linux
Open Source Linux
Sep 9, 2025 · Operations

Master Linux Compression: Choose tar, gzip or zip and Apply Real‑World Best Practices

This comprehensive guide explains Linux compression and decompression fundamentals, compares tar, gzip, and zip commands, provides detailed syntax, performance benchmarks, practical scripts, automation techniques, monitoring, security considerations, cloud integration, and future trends for reliable data handling in modern operations.

AutomationBackupLinux
0 likes · 39 min read
Master Linux Compression: Choose tar, gzip or zip and Apply Real‑World Best Practices
ITPUB
ITPUB
Sep 4, 2025 · Operations

100‑Point IT Operations Checklist: From Server Health to Data Center Safety

A comprehensive 100‑item checklist guides IT operations engineers through daily inspections of servers, network gear, storage, operating systems, databases, virtualization, backup, security devices, and data‑center infrastructure, ensuring reliable performance, proactive issue detection, and adherence to best‑practice standards.

BackupChecklistData Center
0 likes · 27 min read
100‑Point IT Operations Checklist: From Server Health to Data Center Safety
Ops Community
Ops Community
Sep 1, 2025 · Operations

Master Linux Compression: Compare tar, gzip, zip and Real‑World Tips

This comprehensive guide explores Linux compression and decompression, detailing the fundamentals of tar, gzip, and zip, comparing performance, providing practical command examples, advanced techniques, automation scripts, monitoring, security considerations, and real‑world case studies to help engineers choose the right tool for efficient data handling.

Backupcompressiongzip
0 likes · 44 min read
Master Linux Compression: Compare tar, gzip, zip and Real‑World Tips
Linux Tech Enthusiast
Linux Tech Enthusiast
Aug 28, 2025 · Databases

Can Weak Backup & Recovery Skills Cost You Your Probation?

The article explains why mastering database backup and recovery—including failure types, logical vs. physical backups, flashback, full and partial restores, a weekly backup strategy, RMAN configuration, shell scripts, and monitoring queries—is essential for avoiding costly mistakes and passing a new‑job probation.

BackupDatabaseOracle
0 likes · 7 min read
Can Weak Backup & Recovery Skills Cost You Your Probation?
Selected Java Interview Questions
Selected Java Interview Questions
Aug 22, 2025 · Databases

How to Recover Accidentally Deleted MySQL Data Using Binlog

This guide explains how to restore mistakenly deleted MySQL rows by leveraging binary logs, covering binlog activation, mode configuration, locating relevant log files, extracting the original INSERT statements or generating reverse DELETE statements, and using open‑source tools to automate the recovery process.

BackupData RecoveryMySQL
0 likes · 17 min read
How to Recover Accidentally Deleted MySQL Data Using Binlog
MaGe Linux Operations
MaGe Linux Operations
Aug 21, 2025 · Operations

Master Docker Volume Management: From Basics to Enterprise‑Grade Persistence & Backup

This comprehensive guide walks you through Docker storage challenges, explains temporary, bind‑mount and named volumes, presents tiered storage architectures and dynamic scripts, and provides production‑grade backup, monitoring, and performance‑tuning strategies to ensure reliable data persistence in containerized environments.

BackupMonitoringops
0 likes · 13 min read
Master Docker Volume Management: From Basics to Enterprise‑Grade Persistence & Backup
DevOps Operations Practice
DevOps Operations Practice
Aug 11, 2025 · Operations

Zen Master’s Secrets to the Ultimate State of Operations

Through a series of dialogues with a Zen master, the article humorously explores the highest level of operations—automation that runs itself, balanced alerting, cloud migration, reliable backups, high‑availability, stability through chaos engineering, and the ultimate goal of making systems operate without human intervention.

AutomationBackupMonitoring
0 likes · 5 min read
Zen Master’s Secrets to the Ultimate State of Operations
Liangxu Linux
Liangxu Linux
Aug 10, 2025 · Databases

Master MySQL Backup & Recovery: Complete Guide for Reliable Data Protection

This comprehensive guide explains MySQL data backup and recovery strategies, covering backup types, planning principles, built‑in tools like mysqldump and mysqlpump, third‑party solutions such as Percona XtraBackup, scripting for automated schedules, storage options, encryption, monitoring, troubleshooting, and best‑practice recommendations to ensure data safety and business continuity.

AutomationBackupDatabase
0 likes · 22 min read
Master MySQL Backup & Recovery: Complete Guide for Reliable Data Protection
DevOps Operations Practice
DevOps Operations Practice
Aug 7, 2025 · Operations

Mastering Operations: Tools, Processes, and Architecture for Top‑Notch SRE

This article outlines how proactive monitoring, automation, disciplined processes, robust architecture, and chaos engineering empower operations engineers to prevent failures, manage changes, ensure reliable backups, and build self‑healing systems that balance stability, innovation, cost, and human decision‑making.

AutomationBackupChaos Engineering
0 likes · 5 min read
Mastering Operations: Tools, Processes, and Architecture for Top‑Notch SRE
Ops Community
Ops Community
Jul 11, 2025 · Cloud Native

Designing Enterprise‑Ready Kubernetes Persistent Storage in 2025

This comprehensive guide explains Kubernetes persistence fundamentals, core components, enterprise‑grade storage options such as NFS, Ceph, block and object storage, and covers high‑availability design, backup automation, performance tuning, monitoring, alerting, and security best practices for building reliable, scalable storage systems.

BackupCloud NativeDevOps
0 likes · 12 min read
Designing Enterprise‑Ready Kubernetes Persistent Storage in 2025
Liangxu Linux
Liangxu Linux
Jul 3, 2025 · Fundamentals

Unlock Linux Mastery: A Mythical Guide to Command‑Line Essentials

This tutorial uses a fantasy metaphor to teach Linux command‑line fundamentals, covering command categories, syntax, file and directory operations, searching, backup techniques, and essential vi editor commands, providing practical examples and cautionary notes for safe system management.

BackupTutorialVi
0 likes · 7 min read
Unlock Linux Mastery: A Mythical Guide to Command‑Line Essentials