Tagged articles
483 articles
Page 5 of 5
Efficient Ops
Efficient Ops
Aug 2, 2017 · Operations

Essential Ops Playbook: 6 Key Practices to Prevent Disasters

Drawing from a year‑and‑a‑half of ops experience, this guide outlines six practical categories—online operation standards, data handling, security, daily monitoring, performance tuning, and mindset—to help engineers avoid costly mistakes and maintain stable, secure systems.

BackupOperationsSecurity
0 likes · 12 min read
Essential Ops Playbook: 6 Key Practices to Prevent Disasters
dbaplus Community
dbaplus Community
Jul 20, 2017 · Databases

Master MySQL Backup, Security, and SQL Best Practices: A Complete Guide

This article provides a comprehensive, step‑by‑step guide on MySQL backup strategies, security hardening, SQL coding standards, and system planning, offering practical recommendations, verification methods, and actionable checklists to help DBAs build resilient and well‑managed database environments.

BackupDBADatabase Planning
0 likes · 26 min read
Master MySQL Backup, Security, and SQL Best Practices: A Complete Guide
ITPUB
ITPUB
Jul 12, 2017 · Databases

Mastering Oracle RAC: Check Status, Configure, and Manage Instances with SRVCTL

This guide explains how to use SRVCTL to view the status of Oracle RAC databases, instances, services, node applications, and ASM instances, retrieve configuration details, start and stop the cluster, and perform backup and restore operations with concrete command examples.

ASMBackupDatabase Management
0 likes · 10 min read
Mastering Oracle RAC: Check Status, Configure, and Manage Instances with SRVCTL
21CTO
21CTO
Jul 10, 2017 · Operations

How I Rescued a Production MySQL Database After a Fatal rm -rf Disaster

After a mistaken rm -rf command wiped an entire production server—including MySQL data—the author chronicles a step‑by‑step recovery using ext3grep, custom scripts, and binlog restoration, highlighting lessons learned and best practices for future incident handling.

BackupBinlogData Recovery
0 likes · 9 min read
How I Rescued a Production MySQL Database After a Fatal rm -rf Disaster
ITPUB
ITPUB
Jul 6, 2017 · Databases

Choosing the Right RAID Level for MySQL: A Practical Guide

This article explains RAID fundamentals, compares common RAID levels, shows how to identify the configured RAID using MegaCli, evaluates write policies and battery status, and recommends optimal RAID configurations for MySQL data, binary logs, and redo files.

BackupRAIDmysql
0 likes · 11 min read
Choosing the Right RAID Level for MySQL: A Practical Guide
ITPUB
ITPUB
Jun 15, 2017 · Databases

Mastering MySQL Backups: From Cold Copies to Xtrabackup Strategies

This guide explains MySQL backup fundamentals, comparing cold backups, LVM snapshot backups, logical tools like mysqldump and mydumper, and physical solutions such as Percona Xtrabackup, detailing each method’s workflow, advantages, limitations, and how to achieve consistent recovery points and times.

BackupLVMmydumper
0 likes · 10 min read
Mastering MySQL Backups: From Cold Copies to Xtrabackup Strategies
ITPUB
ITPUB
Jun 13, 2017 · Databases

Recover a Dropped MySQL Database with Binlog and Full Backup Steps

This guide explains how to restore an accidentally dropped MySQL database by leveraging nightly full backups and incremental binlog files, detailing the required configuration, command usage, and step‑by‑step procedures to safely recover lost data.

BackupData RestorationDatabase Recovery
0 likes · 5 min read
Recover a Dropped MySQL Database with Binlog and Full Backup Steps
MaGe Linux Operations
MaGe Linux Operations
Jun 11, 2017 · Operations

Essential Linux Ops Tools Every Sysadmin Should Master

This guide outlines the ten core toolsets—ranging from Linux basics and network services to scripting, firewalls, monitoring, clustering, and backup—that aspiring Linux operations engineers need to master for effective system administration.

BackupLinuxNetworking
0 likes · 7 min read
Essential Linux Ops Tools Every Sysadmin Should Master
dbaplus Community
dbaplus Community
May 24, 2017 · Databases

Automate Oracle RMAN Backup Validation and Restore with Shell Scripts

This article presents two comprehensive Shell scripts—one to validate Oracle RMAN backup sets and another to perform a full backup‑restore experiment—detailing SSH trust configuration, source information collection, log transfer, directory preparation, and step‑by‑step RMAN restore commands, all illustrated with practical screenshots and a GitHub repository link.

AutomationBackupDatabase Administration
0 likes · 15 min read
Automate Oracle RMAN Backup Validation and Restore with Shell Scripts
Tencent TDS Service
Tencent TDS Service
Apr 27, 2017 · Databases

Cutting WeChat SQLite Corruption in Half: Strategies and Lessons

Facing a 0.02% SQLite corruption rate that threatened years of chat history, the WeChat mobile team identified three main causes—insufficient space, power loss, and sync failures—and implemented space management, full sync settings, and master‑table backups, halving damage and doubling repair success.

BackupData ReliabilityDatabase Optimization
0 likes · 9 min read
Cutting WeChat SQLite Corruption in Half: Strategies and Lessons
dbaplus Community
dbaplus Community
Apr 25, 2017 · Databases

9 Proven MySQL Data Recovery Techniques Every DBA Should Know

This guide outlines nine practical MySQL recovery methods—including full backup with binlog, business‑logic rollback, flashback tools, innodb_force_recovery, tablespace discard/import, manual ibd editing, extundelete, and Percona's recovery utility—to help DBAs restore data after accidental deletions, corruption, or hardware failures.

BackupBinlogData Recovery
0 likes · 12 min read
9 Proven MySQL Data Recovery Techniques Every DBA Should Know
360 Zhihui Cloud Developer
360 Zhihui Cloud Developer
Apr 13, 2017 · Databases

How to Quickly Recover a Single MySQL Table with XtraBackup

This guide explains how to use Percona XtraBackup for fast single‑table recovery in both local full‑backup and remote streaming scenarios, detailing preparation steps, command examples, and essential configuration tweaks to minimize downtime and data loss.

BackupDatabase RecoverySingle Table Restore
0 likes · 7 min read
How to Quickly Recover a Single MySQL Table with XtraBackup
Architects' Tech Alliance
Architects' Tech Alliance
Apr 10, 2017 · Information Security

Overview of Backup Technologies and Major Enterprise Backup Software

This article provides a comprehensive overview of backup concepts, various backup architectures such as Host, LAN, LAN‑free, Server‑free and Server‑less, evaluates leading enterprise backup solutions, and analyzes key features like deduplication, NDMP support, OS compatibility and maintainability.

BackupData ProtectionEnterprise Software
0 likes · 15 min read
Overview of Backup Technologies and Major Enterprise Backup Software
ITPUB
ITPUB
Mar 15, 2017 · Databases

From Table Design to Scalable MySQL: A Complete Optimization Roadmap

This article outlines the five evolutionary stages of a MySQL deployment—table design, deployment, performance tuning, architecture scaling, and maintenance—detailing practical configuration tweaks, kernel and hardware optimizations, replication strategies, caching, sharding, partitioning, and essential monitoring and backup techniques.

BackupDatabase OptimizationReplication
0 likes · 18 min read
From Table Design to Scalable MySQL: A Complete Optimization Roadmap
Java Backend Technology
Java Backend Technology
Mar 13, 2017 · Databases

Mastering Redis Persistence: RDB Snapshots and AOF Explained

This article explains why Redis data must be persisted, compares the two built‑in methods—RDB snapshotting and Append‑Only File (AOF)—and provides practical configuration tips, command usage, performance considerations, and verification tools for reliable backup and recovery.

AOFBackupPersistence
0 likes · 11 min read
Mastering Redis Persistence: RDB Snapshots and AOF Explained
ITPUB
ITPUB
Feb 13, 2017 · Operations

What the GitLab Deletion Teaches About Boosting System Reliability

The article reflects on the GitLab database deletion incident, analyzing how human error, decision fatigue, inadequate backup strategies, and insufficient safeguards exposed reliability gaps, and proposes practical DevOps practices—such as pair operations, diversified redundancy, strict command restrictions, and continuous feedback—to strengthen complex software systems.

BackupGitLabHumanFactors
0 likes · 10 min read
What the GitLab Deletion Teaches About Boosting System Reliability
ITPUB
ITPUB
Jan 29, 2017 · Databases

Step-by-Step Oracle RMAN Disaster Recovery: Backup, Restore, and Validation

This guide walks through simulating a catastrophic Oracle database failure, performing incremental RMAN backups, verifying backup completeness, and executing a full restore and recovery—including spfile, controlfile, datafiles, and archived logs—so you can confidently recover a database after total data loss.

BackupDatabase RecoveryOracle
0 likes · 15 min read
Step-by-Step Oracle RMAN Disaster Recovery: Backup, Restore, and Validation
Weidian Tech Team
Weidian Tech Team
Dec 15, 2016 · Databases

How to Build a Scalable Automated MySQL Operations Platform

This article explains how to standardize and automate MySQL operations—including multi‑instance deployment, metadata collection, monitoring, backup, and high‑availability using Zookeeper—so that large‑scale database services can be provisioned, managed, and scaled with minimal human intervention.

BackupDatabase operationshigh availability
0 likes · 11 min read
How to Build a Scalable Automated MySQL Operations Platform
dbaplus Community
dbaplus Community
Dec 12, 2016 · Databases

Mastering MySQL GTID: From Basics to Advanced Replication and Recovery

This comprehensive guide explains MySQL GTID fundamentals, its syntax, how to view and generate GTIDs, configure GTID‑based replication, troubleshoot replication errors, integrate GTID with backup/restore, MHA failover, and ensure crash‑safe slaves while discussing performance trade‑offs.

BackupCrash SafetyGTID
0 likes · 24 min read
Mastering MySQL GTID: From Basics to Advanced Replication and Recovery
dbaplus Community
dbaplus Community
Dec 5, 2016 · Databases

Master‑Slave Replication, Backup & Recovery in MySQL – A Complete Step‑by‑Step Guide

This article provides a comprehensive, hands‑on guide to MySQL master‑slave replication, covering configuration changes, creating replication users, backing up the master, restoring to slaves, setting up read/write splitting, handling master failures, implementing dual‑master setups, and performing full and incremental backups and restores.

BackupDualMasterMasterFailure
0 likes · 17 min read
Master‑Slave Replication, Backup & Recovery in MySQL – A Complete Step‑by‑Step Guide
ITPUB
ITPUB
Oct 11, 2016 · Databases

How to Secure Oracle RMAN Backups with Password, Wallet, and Hybrid Encryption

This guide explains why backup security is critical for enterprise databases, introduces Oracle RMAN's three encryption strategies, and provides step‑by‑step commands to configure password‑based encryption, perform backups, handle decryption errors, and finally disable encryption safely.

BackupOracleRMAN
0 likes · 9 min read
How to Secure Oracle RMAN Backups with Password, Wallet, and Hybrid Encryption
ITPUB
ITPUB
Oct 5, 2016 · Databases

How to Backup and Restore Oracle PL/SQL User Objects Using Export/Import Tools

This guide walks through exporting Oracle PL/SQL user objects and table data with PL/SQL Developer, then restoring them by dropping the existing user, recreating it with necessary privileges, executing the exported SQL script, and importing table data while handling constraints and triggers.

BackupExportImport
0 likes · 5 min read
How to Backup and Restore Oracle PL/SQL User Objects Using Export/Import Tools
dbaplus Community
dbaplus Community
Sep 30, 2016 · Databases

How NetEase Hive RDS Enables Fast, Reliable MySQL Instance Migration

This article explains NetEase Hive RDS's instance migration feature, covering use cases, technical challenges such as consistent backup, business impact, data import speed, incremental sync, and the solutions implemented—including multi‑threaded logical backup with mydumper, load‑aware throttling, parallel import with myloader, and filtered replication—to achieve efficient and safe MySQL migrations.

BackupInstance MigrationRDS
0 likes · 16 min read
How NetEase Hive RDS Enables Fast, Reliable MySQL Instance Migration
ITPUB
ITPUB
Sep 24, 2016 · Databases

Recover a Dropped MySQL Database Using Full Backup and Binlog Incrementals

This guide shows how to restore a MySQL database that was accidentally dropped by combining a nightly full mysqldump backup (with master‑log info) and the subsequent binlog files, extracting only the needed statements and replaying them in order.

BackupBinlogData Recovery
0 likes · 8 min read
Recover a Dropped MySQL Database Using Full Backup and Binlog Incrementals
Practical DevOps Architecture
Practical DevOps Architecture
Sep 8, 2016 · Databases

MySQL Database Architecture Evolution, Design, Deployment, Optimization, and Maintenance Guide

This article outlines the lifecycle of a mature MySQL database architecture, covering table design, deployment, performance tuning, scaling strategies such as replication, sharding and partitioning, as well as maintenance tasks like monitoring, backup, and repair, with practical configuration examples.

BackupDatabase OptimizationReplication
0 likes · 17 min read
MySQL Database Architecture Evolution, Design, Deployment, Optimization, and Maintenance Guide
Architects' Tech Alliance
Architects' Tech Alliance
Aug 28, 2016 · Operations

Calculating Backup Storage Capacity and Performance Requirements

This article explains how to calculate the required capacity and performance for backup storage media, covering assumptions about data volume, retention policies, full and incremental backups, deduplication ratios, RAID configurations, and provides formulas to size storage and IOPS for reliable disaster recovery.

BackupIOPSRAID
0 likes · 8 min read
Calculating Backup Storage Capacity and Performance Requirements
Architects' Tech Alliance
Architects' Tech Alliance
Aug 4, 2016 · Information Security

Reliability and High Availability of Backup Software Systems

This article examines how backup software ensures enterprise data reliability through media redundancy, server failover, load balancing, and both cold and high‑availability solutions for the management server, highlighting technologies such as GridStor, dual‑array clustering, and deduplication.

BackupData ProtectionReliability
0 likes · 11 min read
Reliability and High Availability of Backup Software Systems
Architects' Tech Alliance
Architects' Tech Alliance
Jul 23, 2016 · Fundamentals

Understanding Data Deduplication and Compression in Backup Software

This article explains the core features of backup software, focusing on data deduplication and compression techniques, including source‑side, target‑side, and media‑side deduplication, parallel deduplication architectures, replication methods, and hardware snapshot integration, illustrated with SimPana and AnyBackup examples.

Backupcompressiondeduplication
0 likes · 14 min read
Understanding Data Deduplication and Compression in Backup Software
Architects' Tech Alliance
Architects' Tech Alliance
Jul 21, 2016 · Operations

Analysis of Backup Software Network Architectures: LAN Base, LAN Free, Server Free, NDMP, and Server‑Less

The article provides a comprehensive overview of various backup software networking models—including LAN Base, LAN Free, Server Free, NDMP, and the emerging Server‑Less approach—detailing their deployment options, performance impacts, and suitability for different data volumes and infrastructure requirements.

BackupData ProtectionIT Operations
0 likes · 10 min read
Analysis of Backup Software Network Architectures: LAN Base, LAN Free, Server Free, NDMP, and Server‑Less
Architects' Tech Alliance
Architects' Tech Alliance
Jul 20, 2016 · Operations

How Distributed Indexing Improves Backup Performance and Scalability

The article explains how traditional centralized backup indexes become performance bottlenecks as data grows, and details Simpana's two‑level distributed indexing architecture—primary and secondary indexes—showing how it enhances backup speed, reduces network load, and simplifies recovery across multi‑site environments.

BackupData RecoveryOperations
0 likes · 7 min read
How Distributed Indexing Improves Backup Performance and Scalability
MaGe Linux Operations
MaGe Linux Operations
Jul 11, 2016 · Operations

Top 10 Linux Snapshot Tools to Quickly Restore Your System

This guide reviews ten beginner-friendly Linux snapshot applications—including TimeShift, Cronopete, Back In Time, Systemback, Snapper, and others—explaining their installation, operation, and how they enable quick system restoration, backup, and migration, while also comparing snapshots to traditional backups.

BackupLinuxSnapper
0 likes · 21 min read
Top 10 Linux Snapshot Tools to Quickly Restore Your System
ITPUB
ITPUB
Jun 19, 2016 · Cloud Computing

Top Cloud Backup Solutions for Linux: A Practical Guide

This guide reviews both proprietary and open‑source cloud storage options for Linux, detailing how each service works, its Linux support, key features, pricing, and limitations to help users choose the right backup solution for their needs.

BackupLinuxcloud
0 likes · 7 min read
Top Cloud Backup Solutions for Linux: A Practical Guide
MaGe Linux Operations
MaGe Linux Operations
May 10, 2016 · Operations

10 Essential Practices to Prevent Operational Failures in Database Management

This article outlines ten practical guidelines for operations engineers—ranging from mandatory rollback testing and cautious handling of destructive commands to robust backup verification, vigilant monitoring, and disciplined handover procedures—to dramatically reduce system outages and improve overall reliability.

AutomationBackupOperations
0 likes · 18 min read
10 Essential Practices to Prevent Operational Failures in Database Management
ITPUB
ITPUB
May 9, 2016 · Databases

Mastering MySQL Backups: From Cold Copies to Xtrabackup and Beyond

This article explains MySQL backup fundamentals, compares cold, snapshot, logical (mysqldump, mydumper) and physical (Xtrabackup) methods, outlines their workflows, pros and cons, and discusses lock‑related performance impacts and Percona's backup‑lock improvements.

BackupLVMdatabases
0 likes · 11 min read
Mastering MySQL Backups: From Cold Copies to Xtrabackup and Beyond
MaGe Linux Operations
MaGe Linux Operations
May 5, 2016 · Databases

Mastering MySQL Backups: Strategies, Types, and Tools for Reliable Data Protection

This guide explains why data backup is essential, outlines backup types (full, incremental, differential), compares MySQL backup methods (hot, warm, cold), evaluates physical vs logical approaches, reviews common tools like mysqldump, cp, tar, LVM snapshots, and xtrabackup, and offers strategies for choosing the right solution.

BackupData Protectiondatabase
0 likes · 8 min read
Mastering MySQL Backups: Strategies, Types, and Tools for Reliable Data Protection
Qunar Tech Salon
Qunar Tech Salon
Mar 26, 2016 · Databases

MySQL User Management, Database and Table Operations Guide

This guide provides step‑by‑step instructions for connecting to MySQL, creating and managing users and permissions, displaying, creating and deleting databases and tables, performing backups and restores, and executing various query operations such as selecting, updating, and aggregating data.

BackupDatabase operationsQueries
0 likes · 14 min read
MySQL User Management, Database and Table Operations Guide
Architect
Architect
Mar 19, 2016 · Databases

Understanding Percona XtraBackup (PXB) Architecture and Backup Process

This article explains the components, communication mechanisms, full and incremental backup procedures, and restoration steps of Percona XtraBackup (PXB), detailing how the innobackupex script and xtrabackup binary cooperate to perform hot physical backups of MySQL/InnoDB databases.

BackupInnoDBPercona XtraBackup
0 likes · 10 min read
Understanding Percona XtraBackup (PXB) Architecture and Backup Process
Efficient Ops
Efficient Ops
Mar 2, 2016 · Databases

How DBMP Automates MySQL Management and Cuts DBA Workload

This article explains why the DBMP platform was created to automate MySQL operations, describes its architecture and key features such as host management, instance groups, backup, slow‑query handling, and scheduled tasks, and outlines future optimization directions and common technical Q&A.

Backupdatabase automationfailover
0 likes · 14 min read
How DBMP Automates MySQL Management and Cuts DBA Workload
Architects' Tech Alliance
Architects' Tech Alliance
Feb 12, 2016 · Industry Insights

Unlocking Massive Data Deduplication: PBBA Appliances vs Backup Software

Backup environments generate abundant duplicate data, making deduplication essential; this article examines how purpose‑built backup appliances (PBBA) and leading backup software implement variable‑length, global deduplication, compare scale‑out versus scale‑up architectures, and discuss performance trade‑offs and CPU bottlenecks.

BackupPBBAdeduplication
0 likes · 7 min read
Unlocking Massive Data Deduplication: PBBA Appliances vs Backup Software
Architects' Tech Alliance
Architects' Tech Alliance
Jan 28, 2016 · Fundamentals

Deduplication and Compression Techniques in Primary Storage: Differences from Backup Scenarios

This article examines how deduplication and compression technologies, widely used in backup environments, are adapted for primary storage systems—particularly HDD arrays—by analyzing differences in I/O size, patterns, performance requirements, resource allocation, and implementation approaches of major vendors such as NetApp and EMC.

BackupEMCNetApp
0 likes · 8 min read
Deduplication and Compression Techniques in Primary Storage: Differences from Backup Scenarios
dbaplus Community
dbaplus Community
Dec 30, 2015 · Databases

Mastering MySQL: Practical DBA Optimization Techniques and Best Practices

This article presents a comprehensive guide to MySQL optimization, covering its strengths and weaknesses, daily DBA tasks, development and operational standards, sharding strategies, backup solutions, performance tuning, replication options, InnoDB configuration, system-level tweaks, and future improvement directions.

BackupDBAInnoDB
0 likes · 14 min read
Mastering MySQL: Practical DBA Optimization Techniques and Best Practices
dbaplus Community
dbaplus Community
Dec 16, 2015 · Databases

Understanding Oracle ASM Metadata: Files, AU, Disk Headers, and Recovery

This article explains Oracle ASM metadata concepts, including ASM file types, allocation units, physical and virtual metadata structures, disk header composition, and practical methods for querying, validating, backing up, and restoring ASM metadata using tools like KFOD, KFED, and X$KFFXP.

ASMAllocation UnitBackup
0 likes · 14 min read
Understanding Oracle ASM Metadata: Files, AU, Disk Headers, and Recovery
ITPUB
ITPUB
Nov 23, 2015 · Databases

Essential MySQL Security Checklist: 14 Steps to Harden Your Database

To protect MySQL databases from unauthorized access and performance issues, this guide outlines fourteen essential security measures—including restricting remote access, regular backups, disabling default accounts, tightening user privileges, securing configuration files, and enabling logging—providing concrete commands and configuration snippets for robust protection.

BackupConfigurationDatabase Security
0 likes · 11 min read
Essential MySQL Security Checklist: 14 Steps to Harden Your Database
ITPUB
ITPUB
Nov 11, 2015 · Information Security

Essential Steps to Secure MySQL: From Access Controls to Patch Management

This guide outlines practical MySQL hardening techniques—including restricting remote access, regular backups, disabling unsafe features, managing root credentials, removing test databases, and applying security patches—to protect data integrity and prevent unauthorized intrusion.

BackupDatabase SecurityPrivilege Management
0 likes · 11 min read
Essential Steps to Secure MySQL: From Access Controls to Patch Management
Architects' Tech Alliance
Architects' Tech Alliance
Nov 3, 2015 · Cloud Computing

How XenServer Handles Data Protection, Backup, and Disaster Recovery

This article explains XenServer's high‑performance virtualization features, OVF/OVA export capabilities, snapshot‑based backup methods, disaster‑recovery replication, XenCenter management console functions, integration with Microsoft System Center, and the open XenAPI that enables third‑party automation.

BackupData ProtectionVirtualization
0 likes · 5 min read
How XenServer Handles Data Protection, Backup, and Disaster Recovery
Architect
Architect
Oct 31, 2015 · Databases

MySQL High‑Performance Architecture and Optimization Techniques

This article provides a comprehensive guide to MySQL performance optimization, covering isolation levels, MVCC, schema design, index strategies, query execution, partitioning, replication, scaling, hardware considerations, and backup/recovery techniques for building high‑performance, reliable database systems.

BackupIsolation LevelsReplication
0 likes · 22 min read
MySQL High‑Performance Architecture and Optimization Techniques
dbaplus Community
dbaplus Community
Oct 17, 2015 · Databases

Master PostgreSQL: From Origins to Hands‑On Labs and HA Strategies

This article presents a comprehensive overview of PostgreSQL, covering its history, architecture, core features, step‑by‑step lab exercises for database creation, CRUD operations, configuration tuning, performance monitoring, backup and recovery, Hot Standby replication, PGPOOL clustering, and a curated Q&A session addressing common DBA challenges.

BackupHAPGPOOL
0 likes · 19 min read
Master PostgreSQL: From Origins to Hands‑On Labs and HA Strategies
dbaplus Community
dbaplus Community
Oct 12, 2015 · Databases

Essential PostgreSQL Security Checklist: Authentication, Encryption, Auditing and More

This comprehensive guide outlines practical PostgreSQL security measures—including hardened authentication, encrypted data transmission, column‑level encryption, strict permission controls, backup strategies, auditing, patch management, and resource monitoring—to help DBAs protect their databases from unauthorized access and attacks.

AuditingAuthenticationBackup
0 likes · 15 min read
Essential PostgreSQL Security Checklist: Authentication, Encryption, Auditing and More
21CTO
21CTO
Oct 4, 2015 · Databases

Mastering MySQL Migration: Practical Scenarios and Step‑by‑Step Guide

This article explains why MySQL migration is essential, outlines various migration strategies—including full, partial, and cross‑datacenter moves—and provides detailed, step‑by‑step procedures, best‑practice tips, and precautionary measures to ensure a smooth, reliable transition.

BackupCross-DataCenterReplication
0 likes · 21 min read
Mastering MySQL Migration: Practical Scenarios and Step‑by‑Step Guide
21CTO
21CTO
Sep 20, 2015 · Databases

Master MySQL Backup & Recovery: Mysqldump, LVM Snapshots, and Xtrabackup Explained

This tutorial walks through three MySQL backup and recovery strategies—using mysqldump with binary logs, LVM snapshots with binary logs, and Percona Xtrabackup—detailing environment setup, command syntax, incremental procedures, and restoration steps to ensure data safety and minimal downtime.

BackupLVMRecovery
0 likes · 21 min read
Master MySQL Backup & Recovery: Mysqldump, LVM Snapshots, and Xtrabackup Explained
Architects' Tech Alliance
Architects' Tech Alliance
Sep 10, 2015 · Databases

How DD Boost Supercharges Oracle RMAN Backups and Deduplication

DD Boost integrates tightly with Oracle RMAN to provide a flexible, policy‑driven backup solution that allows DBAs to manage local and disaster‑recovery sites independently, simplifies deployment via a simple plugin, and dramatically improves performance by sending only unique data blocks to Data Domain for deduplication.

BackupDD BoostData Domain
0 likes · 3 min read
How DD Boost Supercharges Oracle RMAN Backups and Deduplication
Architects' Tech Alliance
Architects' Tech Alliance
Sep 3, 2015 · Cloud Computing

What Is VMware vSphere? A Deep Dive into Its Core Components and Storage Solutions

The article explains VMware vSphere as a cloud‑based data‑center virtualization suite, detailing its main components such as ESXi, vCenter, vSphere Client, and Web Access, and covering disaster recovery, backup technologies, storage APIs, and various storage provisioning methods like vSAN, VMFS, RDM, NFS/CIFS and vVol.

BackupVMwareVirtualization
0 likes · 10 min read
What Is VMware vSphere? A Deep Dive into Its Core Components and Storage Solutions
Architects' Tech Alliance
Architects' Tech Alliance
Aug 31, 2015 · Operations

What Is EMC DD Boost and How Does It Speed Up Enterprise Backups?

This article introduces EMC's DD Boost—a proprietary protocol for Data Domain that improves backup efficiency, lists the backup applications that support it, explains required TCP ports and storage unit setup, and outlines its key features such as distributed segment processing and load balancing.

BackupDD BoostData Domain
0 likes · 3 min read
What Is EMC DD Boost and How Does It Speed Up Enterprise Backups?
21CTO
21CTO
Aug 8, 2015 · Databases

Master MySQL: From Table Design to Scalable, High‑Performance Architecture

This article walks through the full lifecycle of a MySQL database—from initial table design and single‑server deployment to performance tuning, kernel and hardware tweaks, scaling with replication, caching, sharding, partitioning, and essential maintenance tasks such as monitoring, slow‑query logging, backup and repair.

BackupPerformance Optimizationmysql
0 likes · 18 min read
Master MySQL: From Table Design to Scalable, High‑Performance Architecture

A Curated List of Essential Linux Command-Line Tools

This article presents a comprehensive collection of useful Linux command-line utilities—including dstat, screen, tmux, multitail, rsync, and many others—explaining their purposes, typical use cases, and where to obtain them, helping system administrators and developers improve productivity and monitoring.

BackupLinuxSystem Administration
0 likes · 12 min read
A Curated List of Essential Linux Command-Line Tools
MaGe Linux Operations
MaGe Linux Operations
Apr 29, 2015 · Operations

Achieve Real-Time File Sync with rsync + inotify: Step-by-Step Guide

Learn how to replace traditional backup methods with rsync and inotify for fast, secure, incremental file synchronization, covering rsync fundamentals, command options, server and client configuration, inotify monitoring scripts, and testing procedures to achieve real‑time data replication between Linux servers.

BackupSystem Administrationinotify
0 likes · 9 min read
Achieve Real-Time File Sync with rsync + inotify: Step-by-Step Guide
MaGe Linux Operations
MaGe Linux Operations
Apr 8, 2015 · Operations

Four Essential Strategies to Elevate Data Center Operations

This article outlines four key practices—comprehensive engineering documentation, robust business backup, continuous online monitoring, and regular periodic inspections—that together ensure optimal performance, reliability, and long‑term benefits for data center operations.

BackupData centerDocumentation
0 likes · 7 min read
Four Essential Strategies to Elevate Data Center Operations
MaGe Linux Operations
MaGe Linux Operations
Mar 26, 2015 · Operations

Essential Open‑Source Tools for Backup, Cloud, DevOps, and IT Operations

This article compiles a comprehensive list of open‑source tools covering backup, cloning, cloud platforms, cloud workflows, distributed file systems, cloud storage, code review, collaboration suites, CMDB, configuration management, continuous integration/deployment, DNS, hosting control panels, IT asset management, and LDAP, providing a valuable resource for IT professionals.

BackupDevOpsInfrastructure
0 likes · 11 min read
Essential Open‑Source Tools for Backup, Cloud, DevOps, and IT Operations
Qunar Tech Salon
Qunar Tech Salon
Mar 11, 2015 · Databases

MongoDB 3.0 Release Highlights and New Features

MongoDB 3.0 introduces a pluggable storage engine API with WiredTiger support, expands backup set capacity, adds sharding enhancements, improves security with SCRAM‑SHA‑1 authentication, and upgrades tooling and logging, while retaining MMAPv1 as the default engine.

BackupMongoDBStorage Engines
0 likes · 4 min read
MongoDB 3.0 Release Highlights and New Features