Tagged articles

DevOps

3877 articles · Page 38 of 39
ITPUB
ITPUB
Sep 26, 2016 · Operations

8 Essential Tips for Writing Robust Bash Shell Scripts

This article shares eight hard‑earned recommendations for crafting reliable Bash scripts, covering interpreter selection, debugging flags, static analysis tools, variable expansion, proper scoping, signal trapping, thoughtful design, and recognizing when to switch to more suitable languages.

DebuggingDevOpsShell scripting
0 likes · 10 min read
8 Essential Tips for Writing Robust Bash Shell Scripts
MaGe Linux Operations
MaGe Linux Operations
Sep 23, 2016 · Cloud Native

What Are Docker’s Biggest Drawbacks? A Critical Look at Its Limitations

While Docker revolutionizes application deployment with lightweight containers, it also suffers from significant limitations such as network configuration constraints, restricted library control, lack of clear audit trails, platform incompatibilities, limited isolation, and challenges in storage, logging, and resource management.

ContainersDevOpsDocker
0 likes · 5 min read
What Are Docker’s Biggest Drawbacks? A Critical Look at Its Limitations
Meituan Technology Team
Meituan Technology Team
Sep 23, 2016 · Databases

Database Automation Platform at Meituan: Architecture, Practices, and Lessons

Meituan’s Database Automation Platform evolved from a simple Django‑based 1.0 system into a modular 2.0 architecture using CMDB, RabbitMQ, and Celery, standardizing metadata, providing self‑service APIs, and automating tasks such as cluster provisioning, online schema changes, and high‑availability failover, now handling hundreds of daily operations for over a thousand developers while planning further component‑library refactoring.

CMDBDatabase AutomationDevOps
0 likes · 27 min read
Database Automation Platform at Meituan: Architecture, Practices, and Lessons
DevOps
DevOps
Sep 23, 2016 · Mobile Development

Setting Up iOS Continuous Integration with VSTS/TFS

This guide explains how to configure a cross‑platform CI pipeline for iOS apps using VSTS/TFS, covering project setup, Git repository linking, agent installation on macOS, build definition creation, variable configuration, and triggering builds to produce signed IPA packages.

CIDevOpsTFS
0 likes · 7 min read
Setting Up iOS Continuous Integration with VSTS/TFS
MaGe Linux Operations
MaGe Linux Operations
Sep 22, 2016 · Cloud Native

Master Docker Swarm 1.12: Build, Scale, and Manage High‑Availability Clusters

This article introduces Docker 1.12’s Swarm mode, detailing its new features such as service creation, health checks, scaling, scheduling constraints, load balancing, service discovery, and rolling updates, and provides step‑by‑step instructions for building a multi‑node Swarm cluster, deploying services, and handling node failures.

Container OrchestrationDevOpsDocker
0 likes · 17 min read
Master Docker Swarm 1.12: Build, Scale, and Manage High‑Availability Clusters
dbaplus Community
dbaplus Community
Sep 22, 2016 · Operations

How Microsoft and Xiaomi Mastered DevOps: Practical Lessons for Global Scale

This article summarizes Ouyang Chen's GDevOps 2016 talk, covering the definition of DevOps, four personal viewpoints, Microsoft's three‑phase transformation, Xiaomi's rapid release pipeline, key principles, metrics such as time‑to‑detect, and essential tools for building an efficient DevOps culture.

DevOpsMicrosoftXiaomi
0 likes · 19 min read
How Microsoft and Xiaomi Mastered DevOps: Practical Lessons for Global Scale
MaGe Linux Operations
MaGe Linux Operations
Sep 21, 2016 · Operations

Master Ansible Playbooks: Core Components, Variables, Loops & Handlers

Ansible playbooks, a powerful configuration management tool, use YAML to define tasks, variables, inventory, conditionals, loops, and handlers; this guide explains core components, syntax, variable scopes, command-line overrides, and provides practical examples for installing services, managing users, and triggering handlers based on changes.

AnsibleDevOpsPlaybooks
0 likes · 7 min read
Master Ansible Playbooks: Core Components, Variables, Loops & Handlers
MaGe Linux Operations
MaGe Linux Operations
Sep 19, 2016 · Databases

Master Redis Cluster Setup: From Basics to Scaling Nodes

Learn how to build and manage a Redis cluster on Linux, covering the rationale for clustering, hash slot mechanics, node configuration, adding/removing nodes, resharding, and integrating master‑slave replicas, with step‑by‑step commands and practical examples.

ClusterDatabaseDevOps
0 likes · 11 min read
Master Redis Cluster Setup: From Basics to Scaling Nodes
Alibaba Cloud Developer
Alibaba Cloud Developer
Sep 19, 2016 · Backend Development

What Alibaba Architects Learned at SpringOne 2016: From ReactiveX to Serverless

Alibaba architects attended the SpringOne conference in Las Vegas, sharing insights on emerging technologies such as ReactiveX, Ratpack, Java 9 modules, Spring 5 and 1.4, Zipkin, XRebel, PaaS platforms, serverless computing, cloud‑native principles, Agile, DevOps, and microservices, highlighting both global trends and challenges for Chinese cloud providers.

AgileDevOpsPaaS
0 likes · 9 min read
What Alibaba Architects Learned at SpringOne 2016: From ReactiveX to Serverless
dbaplus Community
dbaplus Community
Sep 5, 2016 · Operations

How to Build a Jenkins‑Docker Automated CI/CD Pipeline from Scratch

This guide walks you through installing Jenkins and Docker, configuring Jenkins agents, creating jobs and pipelines, mastering essential Docker commands and Dockerfile syntax, and finally integrating the two tools to establish a fully automated CI/CD environment for building and deploying applications.

CI/CDDevOpsJenkins
0 likes · 13 min read
How to Build a Jenkins‑Docker Automated CI/CD Pipeline from Scratch
GF Securities FinTech
GF Securities FinTech
Aug 31, 2016 · Cloud Native

How Containerization Transformed a Securities Trading Platform: Lessons from OpenTrading

This article explains how a securities firm adopted Docker and cloud‑native practices to overcome scaling, upgrade, and reliability challenges, detailing its four‑layer platform architecture, massive container deployments, orchestration strategies, and immutable DevOps best practices for high‑frequency trading environments.

DevOpsDockercloud-native
0 likes · 15 min read
How Containerization Transformed a Securities Trading Platform: Lessons from OpenTrading
Architects' Tech Alliance
Architects' Tech Alliance
Aug 26, 2016 · Cloud Computing

Docker Architecture Overview and Module Functions

This article provides a comprehensive overview of Docker's technical architecture, detailing its key modules such as the client, daemon, server, engine, job system, registry, graph, driver, libcontainer, and container components, and explains how they enable isolation, resource management, networking, and continuous deployment in modern DevOps workflows.

Cloud ComputingDevOpsDocker
0 likes · 12 min read
Docker Architecture Overview and Module Functions
Efficient Ops
Efficient Ops
Aug 25, 2016 · Operations

How Tencent Scales Ops Automation for Hundreds of Thousands of Servers

This article explains how Tencent transformed massive operational pressure from billions of users and half‑million servers into an automated, standardized workflow by defining clear goals, building a layered CMDB, integrating Dev and Ops, and implementing a six‑step deployment pipeline that balances efficiency with safety.

CMDBDevOpsOperations Automation
0 likes · 21 min read
How Tencent Scales Ops Automation for Hundreds of Thousands of Servers
dbaplus Community
dbaplus Community
Aug 23, 2016 · Operations

How to Build a Scalable Automated Deployment System for Multi‑Node Clusters

This article walks through the shortcomings of manual code releases, designs a multi‑environment automated deployment workflow, details step‑by‑step implementation—including code fetching, configuration handling, logging, parallel execution, and rollback—while sharing practical scripts and common pitfalls for large‑scale clusters.

CI/CDCluster ManagementDeployment Automation
0 likes · 10 min read
How to Build a Scalable Automated Deployment System for Multi‑Node Clusters
Efficient Ops
Efficient Ops
Aug 21, 2016 · Operations

How to Build a Standardized CI/CD Pipeline for Enterprise Delivery

This article explains how enterprises can overcome manual deployment challenges by standardizing their tech stack, defining mutable and immutable deployment modes, designing an XY‑axis model for system components, and implementing continuous integration, delivery, feedback, and monitoring using tools like Jenkins.

CI/CDContinuous DeliveryDevOps
0 likes · 21 min read
How to Build a Standardized CI/CD Pipeline for Enterprise Delivery
DevOps
DevOps
Aug 13, 2016 · Cloud Computing

How to Build a High-Performance Private Docker Registry Using Azure Storage

This article explains how to set up a fast, stable private Docker Registry by leveraging Azure Storage as the backend, detailing the creation of Azure-hosted Docker machines, configuring the registry containers for both macOS/Linux and Windows, and providing scripts to pull and push images through the Azure-backed storage.

AzureDevOpsDocker
0 likes · 7 min read
How to Build a High-Performance Private Docker Registry Using Azure Storage
MaGe Linux Operations
MaGe Linux Operations
Aug 10, 2016 · Cloud Native

Master Docker Swarm: Build, Deploy, and Manage High‑Availability Clusters

This guide explains Docker Swarm’s architecture, installation methods, and step‑by‑step procedures for creating a high‑availability Swarm cluster, including manager and node setup, TLS security, service discovery with Consul, and essential Docker commands for operating and testing the cluster.

Cluster ManagementContainer OrchestrationDevOps
0 likes · 9 min read
Master Docker Swarm: Build, Deploy, and Manage High‑Availability Clusters
DevOps
DevOps
Aug 4, 2016 · Cloud Computing

Docker for Windows and macOS: Installation Guide and Basic Usage

This guide explains how to download, install, and configure Docker on Windows 10 and macOS, covering prerequisites, enabling Hyper‑V, running the installer, adjusting memory settings, and basic Docker commands such as checking info, running hello‑world, launching Ubuntu and Nginx containers, and viewing running containers.

DevOpsDockerInstallation
0 likes · 6 min read
Docker for Windows and macOS: Installation Guide and Basic Usage
DevOps
DevOps
Jul 28, 2016 · Backend Development

Developing ASP.NET Core Applications on macOS with VS Code, Docker, and MySQL

This tutorial explains how to set up a macOS development environment with Visual Studio Code and .NET Core, create an ASP.NET Core web application, configure a MySQL database using Docker containers, and package the app for production deployment with Docker Compose.

ASP.NET CoreDevOpsDocker
0 likes · 15 min read
Developing ASP.NET Core Applications on macOS with VS Code, Docker, and MySQL
MaGe Linux Operations
MaGe Linux Operations
Jul 23, 2016 · Cloud Native

Unlock Docker: Core Concepts, Architecture, and Practical Commands

This article provides a comprehensive overview of Docker, covering its definition, client‑server architecture, differences from traditional virtual machines, key advantages, essential terminology, installation steps, repository and image concepts, common Docker commands, Dockerfile instructions, container management, and volume handling, all illustrated with diagrams and code examples.

DevOpsDockerDockerfile
0 likes · 20 min read
Unlock Docker: Core Concepts, Architecture, and Practical Commands
DevOps
DevOps
Jul 18, 2016 · R&D Management

Using TFS Board to Run a Scrum Sprint: A Practical Guide

This article explains how to configure and use a TFS Kanban board to plan, execute, and review a Scrum sprint, covering team roles, sprint cadence, backlog grooming, sprint planning, daily stand‑ups, and sprint review and retrospective activities.

AgileDevOpsKanban Board
0 likes · 10 min read
Using TFS Board to Run a Scrum Sprint: A Practical Guide
DevOps
DevOps
Jul 17, 2016 · Cloud Native

10 Things You Should Know About Docker

This article outlines ten essential facts about Docker—from its role as a software packaging and deployment tool and its roots in long‑standing container technology, to its cross‑platform support, performance advantages, rapid evolution, competition, and the cautions enterprises should consider before adopting it.

DevOpsDockerVirtualization
0 likes · 9 min read
10 Things You Should Know About Docker
DevOps Coach
DevOps Coach
Jul 13, 2016 · Cloud Native

Unlocking DevOps 2.0: Key Insights from the ‘Black Treasure’ Book

This article provides a detailed reading note of the DevOps 2.0 toolset book, summarizing its chapters on DevOps concepts, micro‑service architecture, CI/CD pipelines, containerization, orchestration tools such as Docker, Ansible, Kubernetes, and practical advice for building immutable, automated deployment pipelines.

CI/CDDevOpscloud-native
0 likes · 10 min read
Unlocking DevOps 2.0: Key Insights from the ‘Black Treasure’ Book
Efficient Ops
Efficient Ops
Jul 12, 2016 · Operations

How AutoAMS 2.0 Automates Server Asset Management with Django and Ansible

This article describes the design, architecture, and key features of AutoAMS 2.0, an automated asset management system built with Django, Bootstrap, MySQL, and Ansible, showing how it replaces manual Excel‑based tracking, collects server and network data without agents, and streamlines permission and location management for large‑scale operations.

AnsibleDevOpsDjango
0 likes · 8 min read
How AutoAMS 2.0 Automates Server Asset Management with Django and Ansible
DevOps
DevOps
Jul 10, 2016 · Cloud Native

Getting Started with Docker for .NET Core Development on Windows

This guide walks .NET developers through the history of .NET Core, explains why Docker is essential for modern development, and provides step‑by‑step instructions for installing Docker for Windows, configuring Visual Studio, creating a .NET Core web app, adding Docker support, and debugging the containerized application.

.NET CoreDevOpsDocker
0 likes · 13 min read
Getting Started with Docker for .NET Core Development on Windows
Efficient Ops
Efficient Ops
Jul 7, 2016 · Operations

Designing a Scalable Python Ops Automation Platform with OMServer

This article explores building a scalable Python-based operations automation platform, detailing the OMServer architecture, why Python is chosen, module customization, security auditing, and client‑server implementation, while highlighting key third‑party libraries and future enhancements for DevOps teams.

C/S DesignDevOpsOps Automation
0 likes · 8 min read
Designing a Scalable Python Ops Automation Platform with OMServer
Efficient Ops
Efficient Ops
Jul 6, 2016 · Cloud Native

How Docker Transforms Cloud Delivery: Real‑World Practices from Alibaba

This article summarizes a 2016 Global Operations conference talk that explains how Docker and micro‑services reshape software delivery, covering Alibaba's container usage, cloud‑native principles, continuous integration, immutable infrastructure, and practical tips for deploying containers at scale.

Container OrchestrationContinuous DeliveryDevOps
0 likes · 27 min read
How Docker Transforms Cloud Delivery: Real‑World Practices from Alibaba
Qunar Tech Salon
Qunar Tech Salon
Jul 6, 2016 · Information Security

Thirteen Ways Containers Are More Secure Than Virtual Machines

The article explains why containers offer stronger security than virtual machines by detailing thirteen best‑practice features such as disabling SSH, limiting ports, short‑lived containers, immutable designs, automated patching, and comprehensive scanning and logging strategies.

CI/CDContainersDevOps
0 likes · 5 min read
Thirteen Ways Containers Are More Secure Than Virtual Machines
Efficient Ops
Efficient Ops
Jul 4, 2016 · Operations

What the 5th Annual DevOps Report Reveals About ROI, Culture, and Performance

The fifth‑year DevOps report, based on surveys of over 4,600 global professionals, shows how high‑performing organizations achieve dramatically faster deployments, higher employee loyalty, better quality and security, and substantial cost savings, while highlighting the ROI of DevOps investments and cultural transformation.

DevOpsIT performanceLean Management
0 likes · 15 min read
What the 5th Annual DevOps Report Reveals About ROI, Culture, and Performance
dbaplus Community
dbaplus Community
Jun 27, 2016 · Backend Development

Why Monoliths Struggle and How Service‑Oriented Architecture Can Help

The article examines the high development and operational costs of traditional monolithic applications, outlines service‑oriented solutions such as splitting, decoupling, and layering, details practical implementation techniques like subscription‑publish mechanisms, fault isolation, and governance, and discusses the limits and future evolution toward microservices.

DevOpsService Governancedistributed systems
0 likes · 23 min read
Why Monoliths Struggle and How Service‑Oriented Architecture Can Help

Microservices, Containers, and Cloud‑Native Architecture: An Updated Middleware Overview

This article provides a comprehensive update on how microservices, containers, and cloud‑native architectures are reshaping middleware, covering key concepts, frameworks, CI/CD pipelines, service discovery, dynamic configuration, scalability, resilience patterns, and integration platforms for modern enterprise IT.

CI/CDContainersDevOps
0 likes · 22 min read
Microservices, Containers, and Cloud‑Native Architecture: An Updated Middleware Overview
DevOps
DevOps
Jun 22, 2016 · R&D Management

Using TFS Kanban Boards: Creation, Configuration, and Customization

This article explains how to create and customize Kanban boards in TFS, covering board creation, column naming, WIP limits, status mapping, swimlane usage, card field configuration, and visual styling to improve team visibility and workflow management.

AgileDevOpsKanban
0 likes · 8 min read
Using TFS Kanban Boards: Creation, Configuration, and Customization
Efficient Ops
Efficient Ops
Jun 21, 2016 · Operations

How to Effectively Learn Open Source Code: A DevOps Guide

This article outlines a step-by-step DevOps guide for mastering source code, covering preparation, code exploration, framework understanding, workflow tracing, data flow analysis, debugging techniques, and practical tips such as selecting resources, IDEs, and leveraging tests to accelerate learning.

DebuggingDevOpsIDE
0 likes · 15 min read
How to Effectively Learn Open Source Code: A DevOps Guide
DevOps
DevOps
Jun 20, 2016 · Operations

A Comprehensive Overview of Popular DevOps Tools for IT Operations

This article provides a detailed overview of widely used DevOps tools—including monitoring solutions like Microsoft SCOM, Vistara, SolarWinds, Nimsoft, ServiceNow, automation platforms Chef and Puppet, container platform Docker, orchestration systems Apache Mesos and Kubernetes, as well as performance monitoring tools New Relic and Graphite/Grafana—highlighting their features, typical use cases, and important considerations.

DevOpsIT OperationsMonitoring
0 likes · 10 min read
A Comprehensive Overview of Popular DevOps Tools for IT Operations
Efficient Ops
Efficient Ops
Jun 19, 2016 · Databases

One‑Click Docker Deployment of a Redis Sharding Cluster

This guide explains how to build Docker images, configure Redis, and orchestrate containers to create a fully automated, one‑click Redis sharding cluster, covering preparation, scripting, configuration, and verification steps.

ClusterDatabase deploymentDevOps
0 likes · 11 min read
One‑Click Docker Deployment of a Redis Sharding Cluster
Efficient Ops
Efficient Ops
May 31, 2016 · Cloud Computing

What the 2016 Cloud Survey Reveals About DevOps and Docker Adoption

The 2016 RightScale cloud computing survey of 1,060 respondents shows rapid growth in DevOps usage, a doubling of Docker adoption, diverse tool combinations, and highlights container challenges such as lack of experience, with Europe leading Docker usage and a strong push for education and practice.

Cloud ComputingContainersDevOps
0 likes · 13 min read
What the 2016 Cloud Survey Reveals About DevOps and Docker Adoption
DevOps
DevOps
May 31, 2016 · Operations

Understanding the DevOps Toolchain: SCM, Automation, and Cloud

This article explains the DevOps toolchain by breaking it into three core components—SCM, automation, and cloud—detailing their roles, typical tools, and how they interoperate to enable continuous delivery and scalable, self‑service infrastructure.

DevOpsSCMToolchain
0 likes · 6 min read
Understanding the DevOps Toolchain: SCM, Automation, and Cloud
MaGe Linux Operations
MaGe Linux Operations
May 27, 2016 · Operations

Why Google Relies on Software Engineers to Run Its Services: Inside SRE

The article explains Google’s Site Reliability Engineering (SRE) philosophy, how it empowers software engineers to automate operations, the balance between development and reliability, the concept of error budgets, and the cultural shift that turned DevOps into a core practice for large‑scale services.

DevOpsError BudgetOperations Automation
0 likes · 10 min read
Why Google Relies on Software Engineers to Run Its Services: Inside SRE

An Introduction to Ansible: Installation, Configuration, and MySQL Replication with Playbooks

This article introduces Ansible, a Python‑based configuration management and deployment tool, explains its installation prerequisites, demonstrates basic ad‑hoc commands, and provides a comprehensive guide to managing MySQL master‑slave replication using Ansible modules, playbooks, and role‑based directory structures.

AnsibleDevOpsMySQL replication
0 likes · 19 min read
An Introduction to Ansible: Installation, Configuration, and MySQL Replication with Playbooks
Efficient Ops
Efficient Ops
May 19, 2016 · Operations

How Docker Powers the Three Ways of DevOps: Speed, Feedback, and Learning

This article explains how Docker supports the three DevOps principles—system thinking, rapid feedback loops, and a culture of continuous experimentation—by accelerating development, reducing variation, and improving visibility across the software delivery pipeline.

Continuous DeliveryDevOpsDocker
0 likes · 14 min read
How Docker Powers the Three Ways of DevOps: Speed, Feedback, and Learning
Huawei Cloud Developer Alliance
Huawei Cloud Developer Alliance
May 19, 2016 · Operations

Explore 60+ Essential Open-Source DevOps Tools for Seamless Development & Operations

This article introduces the concept of DevOps and provides a comprehensive, categorized list of over sixty open‑source tools—including version control, build automation, CI/CD, container platforms, configuration management, monitoring and logging solutions—helping beginners and practitioners quickly adopt effective DevOps practices.

CI/CDDevOpsOpen-source tools
0 likes · 16 min read
Explore 60+ Essential Open-Source DevOps Tools for Seamless Development & Operations
DevOps
DevOps
May 9, 2016 · Operations

Configuring Bi‑directional Sync Between GitHub and VSTS Using CI Pipelines

This guide explains how to set up bi‑directional synchronization between public GitHub repositories and private VSTS (Azure DevOps) repos using VSTS CI pipelines, covering configuration steps, command‑line tasks, token handling, and common synchronization scenarios.

Azure DevOpsCIDevOps
0 likes · 6 min read
Configuring Bi‑directional Sync Between GitHub and VSTS Using CI Pipelines
Efficient Ops
Efficient Ops
May 8, 2016 · Databases

Mastering Oracle DevOps: SQL Auditing Best Practices to Boost Performance

This article, based on a 2016 Global Operations Conference talk, outlines Oracle DevOps best practices through SQL auditing, presenting multiple real‑world cases, derived rules, and automation strategies that help DBA and development teams identify performance bottlenecks, enforce standards, and improve system stability.

DBADevOpsSQL Auditing
0 likes · 29 min read
Mastering Oracle DevOps: SQL Auditing Best Practices to Boost Performance
Efficient Ops
Efficient Ops
May 7, 2016 · Operations

400+ Free DevOps Tools & Resources Every Sysadmin Should Know

This article compiles a curated list of over 400 free DevOps and system administration resources—including CI/CD services, monitoring tools, crash handling platforms, IaaS, PaaS, and DBaaS solutions—to help engineers streamline workflows and improve operational efficiency.

CI/CDDevOpsIaaS
0 likes · 7 min read
400+ Free DevOps Tools & Resources Every Sysadmin Should Know
Efficient Ops
Efficient Ops
May 5, 2016 · Operations

Why Docker Daemon Is a Minefield: Lessons from a Former Google SRE

In this talk, a former Google SRE shares his experiences moving from massive YouTube growth to Google Cloud operations and later to a Chinese startup, exposing the hidden pitfalls of Docker daemon, image management, container runtimes, and practical DevOps strategies for building, packaging, and running services.

DevOpsDockerOCI
0 likes · 17 min read
Why Docker Daemon Is a Minefield: Lessons from a Former Google SRE
DevOps
DevOps
May 4, 2016 · Fundamentals

User Story Driving Agile Development (UDAD): A Comprehensive End‑to‑End Agile Methodology

The article introduces User Story Driving Agile Development (UDAD), a comprehensive methodology that integrates impact mapping, user story mapping, visual guidance, Scrum, Kanban, continuous integration, exploratory testing, and automated deployment to provide a cohesive, end‑to‑end agile process supported by Microsoft Team Foundation Server.

AgileDevOpsKanban
0 likes · 7 min read
User Story Driving Agile Development (UDAD): A Comprehensive End‑to‑End Agile Methodology
Efficient Ops
Efficient Ops
May 2, 2016 · Cloud Native

How Ping An Built a Scalable Mesos + Marathon PaaS for Financial Services

This article details how Ping An Technology designed and operated the Padis platform—an internal Docker‑based PaaS that evolved to Mesos + Marathon, providing independent container IPs, automated networking, load balancing, CMDB integration, monitoring, and log aggregation to support thousands of containers in production financial applications.

Container OrchestrationDevOpsMarathon
0 likes · 16 min read
How Ping An Built a Scalable Mesos + Marathon PaaS for Financial Services
Efficient Ops
Efficient Ops
Apr 28, 2016 · Databases

How Oracle DB Embraces DevOps in the Cloud Era

This article summarizes Gai Guoqiang's presentation on Oracle Database DevOps practices, covering Oracle's cloud strategy, the shifting competitive landscape, the impact of cloud on DBA roles, and how DevOps principles are reshaping traditional database operations and performance management.

DBADatabaseDevOps
0 likes · 13 min read
How Oracle DB Embraces DevOps in the Cloud Era
Architecture Digest
Architecture Digest
Apr 24, 2016 · Cloud Computing

Bridging the DevOps Gap: From IaaS Limitations to PaaS Solutions and Operational Automation

This article examines the DevOps dilemma caused by fragmented development and operations workflows, explains why IaaS alone cannot solve it, and outlines how PaaS combined with modern cloud-native tools such as Docker, Mesos, and YARN can automate resource allocation, deployment, service discovery, and monitoring to create a cohesive, scalable operations platform.

Cloud ComputingDevOpsIaaS
0 likes · 14 min read
Bridging the DevOps Gap: From IaaS Limitations to PaaS Solutions and Operational Automation
21CTO
21CTO
Apr 20, 2016 · Operations

How Spotify Scaled Machine Management: From Ops Chaos to Cloud Automation

This article chronicles Spotify's evolution in server operations—from a manual Ops team and ad‑hoc tools in the early years, through automated DNS, provisioning, and self‑service platforms, to a hybrid cloud strategy that reduced resource‑request turnaround from weeks to minutes.

DevOpsSpotifyautomation
0 likes · 14 min read
How Spotify Scaled Machine Management: From Ops Chaos to Cloud Automation
Efficient Ops
Efficient Ops
Apr 19, 2016 · Operations

How Tencent’s Blue Whale Powers Unattended Ops, SaaS Automation, and DevOps Value

The talk outlines Tencent’s Blue Whale platform, describing how automated publishing tools, unattended change processes, fault‑handling strategies, alert‑driven self‑healing, low‑cost tool culture, and a thriving DevOps ecosystem together transform operations from routine maintenance to high‑value, scalable services.

DevOpsSaaSTool Culture
0 likes · 12 min read
How Tencent’s Blue Whale Powers Unattended Ops, SaaS Automation, and DevOps Value
ITPUB
ITPUB
Apr 19, 2016 · Operations

What the Worst WTF Moments Reveal About Software Operations

A collection of real‑world programming mishaps—from mixing test and production data to dangerous rm commands—illustrates why strict environment separation, cautious command execution, and disciplined code management are essential for reliable software operations.

DevOpsoperationssoftware mistakes
0 likes · 10 min read
What the Worst WTF Moments Reveal About Software Operations
Baidu Intelligent Testing
Baidu Intelligent Testing
Apr 19, 2016 · Operations

Building a Low‑Cost, End‑to‑End Automated CI/CD System: From Identifying Common Pain Points to Zero‑Cost Benchmark Replication

This article describes how a product line can quickly establish a comprehensive, low‑cost automated CI/CD pipeline by first pinpointing shared development pain points, then creating a benchmark solution that can be replicated without additional expense, covering local builds, coverage metrics, performance testing, and automated online regression.

CI/CDDevOpstesting
0 likes · 6 min read
Building a Low‑Cost, End‑to‑End Automated CI/CD System: From Identifying Common Pain Points to Zero‑Cost Benchmark Replication
Efficient Ops
Efficient Ops
Apr 12, 2016 · Operations

From PHP Coder to DevOps Leader: Tencent CDN & Game Data Ops Insights

This article chronicles Liu Tiansi’s 13‑year journey from a PHP/Java developer to a senior operations engineer at Tencent, detailing his open‑source contributions, large‑scale CDN management, massive game data pipelines, DevOps practices, and practical lessons for building reliable, automated infrastructure.

CDNCloud ComputingDevOps
0 likes · 17 min read
From PHP Coder to DevOps Leader: Tencent CDN & Game Data Ops Insights
dbaplus Community
dbaplus Community
Apr 11, 2016 · Operations

Can External Quality Acceptance Drive DevOps Monitoring and Eliminate Technical Debt?

This article explains how focusing on non‑functional quality during external acceptance testing can drive DevOps teams to improve system monitorability, reduce technical debt, and establish concrete change‑control, acceptance, and performance verification processes for both operational and business‑level observability.

DevOpsObservabilitychange management
0 likes · 15 min read
Can External Quality Acceptance Drive DevOps Monitoring and Eliminate Technical Debt?
Architects' Tech Alliance
Architects' Tech Alliance
Apr 10, 2016 · Cloud Native

Why Docker Became the Core of Modern Cloud‑Native Computing

Docker, built on Linux container technologies, offers a portable, cross‑platform runtime environment and a rich ecosystem—including image registries, orchestration tools, and cloud integrations—that simplifies development, deployment, and management of distributed applications, while providing resource isolation, high utilization, and DevOps automation.

ContainersDevOpsDocker
0 likes · 8 min read
Why Docker Became the Core of Modern Cloud‑Native Computing
MaGe Linux Operations
MaGe Linux Operations
Apr 4, 2016 · Operations

Master Jenkins CI: Step-by-Step Setup, Plugins, and Automated Deployment

This guide walks through setting up a Jenkins CI server—including environment preparation, installation, essential plugins, system and project configuration, security hardening, and a custom shell script for automated deployment—providing a practical roadmap for reliable continuous integration and delivery in Java projects.

CI/CDDevOpsGit
0 likes · 7 min read
Master Jenkins CI: Step-by-Step Setup, Plugins, and Automated Deployment
Big Data and Microservices
Big Data and Microservices
Mar 23, 2016 · Industry Insights

Inside the Securities Tech Revolution: Cloud, Microservices, and Big Data

The article examines the paradox of the Chinese securities industry—high demand for cutting‑edge trading, quantitative and high‑frequency systems versus outdated IT—while detailing the team’s FinTech startup approach, their Node.js/Docker/MongoDB stack, a cloud‑native trading platform, microservice architecture, big‑data pipelines, performance tuning, and DevOps practices.

Big DataCloud ComputingDevOps
0 likes · 21 min read
Inside the Securities Tech Revolution: Cloud, Microservices, and Big Data
DevOps
DevOps
Mar 19, 2016 · R&D Management

A Historical Overview of Team Foundation Server (TFS) from 2005 to 2015

This article chronicles the ten‑year evolution of Microsoft’s Team Foundation Server, detailing its origins, major releases from TFS 2005 through TFS 2015, feature improvements, installation challenges, and its impact on DevOps and software development practices.

ALMDevOpsMicrosoft
0 likes · 13 min read
A Historical Overview of Team Foundation Server (TFS) from 2005 to 2015
21CTO
21CTO
Mar 17, 2016 · Operations

How We Scaled a Small Team with GitHub, ZenHub, TravisCI, and Slack

From a tiny squad using SVN to a full‑stack agile team, we detail how migrating to GitHub, adopting ZenHub for project management, integrating TravisCI for continuous testing and deployment, using Reviewable for pull‑request reviews, Coveralls for coverage metrics, and Slack for real‑time communication transformed our development workflow and boosted code quality.

CI/CDDevOpsGitHub
0 likes · 6 min read
How We Scaled a Small Team with GitHub, ZenHub, TravisCI, and Slack
Efficient Ops
Efficient Ops
Mar 16, 2016 · Operations

How to Build Efficient CI/CD Pipelines for Startup Ops

This article outlines practical CI/CD and DevOps guidelines for startups, covering application management standards, branch strategies, code review tools, directory layout, permission controls, configuration change processes, release policies, logging practices, and automated deployment using tools like Git, Jenkins, and Ansible.

AnsibleCI/CDDevOps
0 likes · 14 min read
How to Build Efficient CI/CD Pipelines for Startup Ops
DevOps
DevOps
Mar 14, 2016 · Operations

Installing and Configuring TFS Build vNext Agent on Windows

This guide explains how to install Node.js, download the TFS Build vNext agent, configure it on Windows using PowerShell, set execution policies, and register the agent with TFS, covering required tools, configuration options, and optional service setup.

Build AgentCIDevOps
0 likes · 7 min read
Installing and Configuring TFS Build vNext Agent on Windows
21CTO
21CTO
Mar 11, 2016 · Operations

Scaling DevOps at Mogujie: How a Young Ops Team Tackled Massive Traffic and Double‑11

Facing explosive traffic and high‑concurrency demands, Mogujie's newly formed operations team adopted DevOps practices, built CMDB, CI/CD pipelines, and monitoring platforms, and successfully supported the massive Double‑11 and Double‑12 sales events, sharing key technologies and lessons learned in their rapid‑pace environment.

CMDBDevOpscontinuous integration
0 likes · 3 min read
Scaling DevOps at Mogujie: How a Young Ops Team Tackled Massive Traffic and Double‑11
Architecture Digest
Architecture Digest
Mar 5, 2016 · Operations

Dianping Operations Architecture Overview and Best Practices

This article presents a comprehensive overview of Dianping's operations architecture, detailing team organization, multi‑data‑center infrastructure, monitoring layers, automation tools, configuration management systems, incident analysis, lessons learned, and future directions such as Docker and PaaS adoption.

DevOpsDockerMonitoring
0 likes · 16 min read
Dianping Operations Architecture Overview and Best Practices
Qunar Tech Salon
Qunar Tech Salon
Mar 5, 2016 · Operations

Common Linux Commands for Java Developers

This article provides Java developers with a concise reference of essential Linux shell commands, covering process inspection, file manipulation, permission changes, compression, networking checks, remote access, and other common operations needed for interacting with Linux servers during development and deployment.

CommandLineDevOpsLinux
0 likes · 7 min read
Common Linux Commands for Java Developers
DevOps
DevOps
Mar 2, 2016 · Operations

Understanding DevOps: Principles, Practices, and Implementation

This article provides a comprehensive overview of DevOps, explaining its purpose, cultural challenges, core principles such as automation, standardization, and configuration, its relationship with cloud, lean and agile, practical steps, metrics, and how it transforms IT delivery into an end‑to‑end business value pipeline.

AgileContinuous DeliveryDevOps
0 likes · 17 min read
Understanding DevOps: Principles, Practices, and Implementation

Microservices, Containers, and the Shift to Cloud‑Native Architectures

The article examines how microservices and container technologies are reshaping software development, operations, and organizational structures, emphasizing faster delivery, monitoring, contractual APIs, and the emergence of cloud‑native platforms such as Docker, IBM Bluemix Garage, Joyent Triton, and VMware solutions.

ContainersDevOpsSoftware Architecture
0 likes · 18 min read
Microservices, Containers, and the Shift to Cloud‑Native Architectures
DevOps
DevOps
Feb 23, 2016 · Operations

Lean Production and Kanban: Insights from NUMMI and Their Application to Modern Software Development

The article examines how the Toyota Production System, introduced at the NUMMI plant, fostered a culture of respect, continuous improvement, and worker empowerment, and explains how these lean principles have been adapted to software development through Kanban, value‑stream mapping, and DevOps practices.

DevOpsToyota Production Systemcontinuous improvement
0 likes · 6 min read
Lean Production and Kanban: Insights from NUMMI and Their Application to Modern Software Development
Efficient Ops
Efficient Ops
Feb 22, 2016 · Operations

Why Dev and Ops Clash and How to Bridge the Gap

The article analyzes the root causes of Dev‑Ops conflicts, illustrates typical complaints at each release stage, and proposes concrete measures—shared goals, platform‑driven automation, and cultural alignment—to transform friction into collaborative efficiency.

AgileDevOpsIT Management
0 likes · 11 min read
Why Dev and Ops Clash and How to Bridge the Gap
MaGe Linux Operations
MaGe Linux Operations
Feb 19, 2016 · Operations

How to Quickly Set Up a Python Development Environment on CentOS

This step‑by‑step guide shows how to create a user, enable passwordless sudo, add EPEL and IUS repositories, install Python 2.7, Python 3, pip, virtualenv, generate SSH keys, and set up common services like Git, MySQL, Redis, and RabbitMQ on a clean CentOS system, with troubleshooting tips for common errors.

CentOSDevOpsLinux
0 likes · 5 min read
How to Quickly Set Up a Python Development Environment on CentOS
MaGe Linux Operations
MaGe Linux Operations
Feb 18, 2016 · Operations

Salt vs Ansible: Which Configuration Management Tool Wins for Speed, Security, and Scalability?

After hands‑on experience with both Salt and Ansible, the author compares their terminology, architecture, community support, speed, code structure, security, auditing, deployment, learning curve, and documentation, concluding that Ansible excels in ease of use while Salt offers superior scalability and performance for cloud environments.

AnsibleDevOpsautomation
0 likes · 14 min read
Salt vs Ansible: Which Configuration Management Tool Wins for Speed, Security, and Scalability?
Java High-Performance Architecture
Java High-Performance Architecture
Feb 12, 2016 · Backend Development

Mastering Distributed Configuration Management with Zookeeper

Learn how distributed configuration management works—why large systems need a central store, the role of publish/subscribe, and how Zookeeper provides a robust solution for real‑time feature toggling without service restarts, ensuring high availability and seamless operations across micro‑services.

DevOpsbackendconfiguration management
0 likes · 4 min read
Mastering Distributed Configuration Management with Zookeeper
MaGe Linux Operations
MaGe Linux Operations
Feb 2, 2016 · Operations

Essential DevOps Toolbox: 50+ Open‑Source Operations Tools You Should Know

This article presents a curated toolbox of over fifty open‑source DevOps utilities, covering bootstrapping, configuration management, automated build and testing, monitoring, micro‑service platforms, performance analysis, logging, security, PaaS, CI/CD, database management, and more, providing a comprehensive reference for operations engineers.

DevOpsOpen-sourceToolbox
0 likes · 4 min read
Essential DevOps Toolbox: 50+ Open‑Source Operations Tools You Should Know
dbaplus Community
dbaplus Community
Feb 1, 2016 · Information Security

Boosting Application Security with Docker: Best Practices and Linux Capabilities

This article explains how Docker containers improve security through isolation, Linux namespaces, cgroups, capabilities, and image management, while also covering integration with virtual machines, bare‑metal deployment, lifecycle management, and open‑source security practices for modern microservice architectures.

DevOpsLinux capabilitiescontainer-security
0 likes · 19 min read
Boosting Application Security with Docker: Best Practices and Linux Capabilities
21CTO
21CTO
Jan 25, 2016 · Cloud Native

Why Docker Still Dominates: 2016 Tech Awards Highlights & Key Container Projects

InfoWorld’s 2016 Technology of the Year Awards spotlight Docker’s dominance, listing top container‑related projects such as Docker, Kubernetes, CoreOS, Mesos and others, while also covering a broad range of languages, tools, cloud services and big‑data platforms that shaped the tech landscape.

ContainersDevOpsDocker
0 likes · 6 min read
Why Docker Still Dominates: 2016 Tech Awards Highlights & Key Container Projects
Node Underground
Node Underground
Jan 19, 2016 · Operations

Why Front‑End Developers Should Care About Docker: A Beginner’s Guide

This article explains how Docker’s build‑ship‑run model bridges front‑end development and containerization, covering Docker’s history, core concepts, a sample Dockerfile for a Node.js app, and practical scenarios where Docker improves environment consistency, resource efficiency, and scalability.

DevOpsDockercontainerization
0 likes · 11 min read
Why Front‑End Developers Should Care About Docker: A Beginner’s Guide
Efficient Ops
Efficient Ops
Jan 17, 2016 · Operations

From Telecom to Startup: A Veteran Ops Engineer Shares Career Lessons

Veteran operations engineer Wang Jinyin recounts his journey from telecom system development to leading ops teams at Tencent, YY, and UC, then founding Youwei, offering practical insights on standardization, automation, DevOps integration, and team building for modern IT operations.

DevOpsMonitoringcareer
0 likes · 17 min read
From Telecom to Startup: A Veteran Ops Engineer Shares Career Lessons
Efficient Ops
Efficient Ops
Jan 8, 2016 · Operations

How Monitoring and Template Deployment Supercharge Automated Operations

This article explains why modern IT operations rely on monitoring-driven automation, template-based deployments, and containerized tools to dramatically improve efficiency, reduce manual effort, and pave the way toward intelligent, DevOps-enabled operational platforms.

DevOpsautomationtemplate deployment
0 likes · 8 min read
How Monitoring and Template Deployment Supercharge Automated Operations
Efficient Ops
Efficient Ops
Dec 24, 2015 · Operations

Key Takeaways from the 2016 DevOps Enterprise Summit

A comprehensive English summary of the DevOps Enterprise Summit highlights the rise of DevOps adoption, real‑world case studies from Target, Ticketmaster, USAA, Capital One, Disney, and IBM, and practical insights on feedback loops, continuous delivery, and scaling DevOps across large enterprises.

Continuous DeliveryDevOpsfeedback
0 likes · 16 min read
Key Takeaways from the 2016 DevOps Enterprise Summit
Efficient Ops
Efficient Ops
Dec 23, 2015 · Cloud Native

Can Docker Become the IT World’s Game-Changing “Container”?

The article draws a parallel between the historical impact of shipping containers and Docker, arguing that Docker’s container ecosystem could reshape IT production, operations, and cloud services by enabling standardized, portable workloads and fostering a new era of collaborative software delivery.

ContainersDevOpsDocker
0 likes · 18 min read
Can Docker Become the IT World’s Game-Changing “Container”?
Efficient Ops
Efficient Ops
Dec 21, 2015 · Operations

How to Eliminate Plaintext MySQL Passwords in Docker Containers

This article examines the security risk of exposing MySQL root passwords as plaintext environment variables in Docker containers and presents a practical volume‑replacement method, comparing it with password‑modification approaches while discussing Docker‑layer versus application‑layer considerations.

DevOpsDockerMySQL
0 likes · 10 min read
How to Eliminate Plaintext MySQL Passwords in Docker Containers