Tagged articles

troubleshooting

664 articles · Page 6 of 7
Java Backend Technology
Java Backend Technology
Nov 21, 2020 · Backend Development

Why Your RocketMQ Consumer Stalls: Uncovering the Hidden VIP Port Issue

This article walks through a real‑world RocketMQ failure where a consumer could not receive messages due to an unreachable VIP port, explains the broker’s three‑port architecture, shows how to diagnose the problem via logs, and provides code and configuration fixes to restore normal consumption.

Message QueueRocketMQVIP Port
0 likes · 9 min read
Why Your RocketMQ Consumer Stalls: Uncovering the Hidden VIP Port Issue
Liangxu Linux
Liangxu Linux
Nov 19, 2020 · Cloud Native

6 Essential kubectl Tricks to Debug Kubernetes Deployments

After migrating from Docker to Docker Swarm and finally to Kubernetes, the author shares six practical kubectl troubleshooting techniques—including inspecting deployments, viewing events, streaming logs, exporting YAML, scaling pods, and port‑forwarding—to quickly identify and fix common cluster issues.

Debuggingdeploymentkubectl
0 likes · 7 min read
6 Essential kubectl Tricks to Debug Kubernetes Deployments
php Courses
php Courses
Nov 10, 2020 · Backend Development

Common Pitfalls When Integrating WeChat Enterprise Callback with ThinkPHP

This article outlines three major pitfalls developers encounter when using ThinkPHP 3.2.3 with PHP 5.3 to handle WeChat enterprise callback decryption, and provides step‑by‑step solutions including library adjustments, constructor updates, signature handling, and output buffering cleanup.

EncryptionWeChatcallback
0 likes · 4 min read
Common Pitfalls When Integrating WeChat Enterprise Callback with ThinkPHP
Aikesheng Open Source Community
Aikesheng Open Source Community
Nov 9, 2020 · Databases

Common Causes and Troubleshooting of MySQL Startup Failures

MySQL startup failures are typically caused by either insufficient system resource access (such as file permissions or security policies) or incorrect configuration parameters, and can be diagnosed by checking permissions, security policies, and the order and content of MySQL option files.

ConfigurationDatabaseMySQL
0 likes · 6 min read
Common Causes and Troubleshooting of MySQL Startup Failures
Efficient Ops
Efficient Ops
Nov 8, 2020 · Operations

6 Essential kubectl Tricks to Master Kubernetes Troubleshooting

This guide presents six practical kubectl commands—including get, events, logs, yaml output, scaling, and port‑forwarding—along with detailed usage tips to help you quickly diagnose and resolve common issues in Kubernetes deployments.

DevOpsKubernetesOperations
0 likes · 6 min read
6 Essential kubectl Tricks to Master Kubernetes Troubleshooting
dbaplus Community
dbaplus Community
Oct 11, 2020 · Operations

Mastering CPU and Load: A Practical Guide to Linux Performance Troubleshooting

This article explains how to monitor and interpret CPU usage and load average on Linux servers, details the calculations behind these metrics, illustrates their meaning with examples and images, and provides step‑by‑step troubleshooting methods for high load, high CPU, and high load with low CPU scenarios.

CPUJavaLinux monitoring
0 likes · 19 min read
Mastering CPU and Load: A Practical Guide to Linux Performance Troubleshooting
Top Architect
Top Architect
Oct 2, 2020 · Databases

Redis Performance Degradation: Common Latency Issues, Diagnosis, and Optimization

This article explains why Redis can become slow, covering typical latency causes such as high‑complexity commands, large keys, concentrated expirations, memory limits, fork overhead, CPU binding, AOF settings, swap usage, and network saturation, and provides practical troubleshooting steps and best‑practice recommendations.

Redisbest-practiceslatency
0 likes · 24 min read
Redis Performance Degradation: Common Latency Issues, Diagnosis, and Optimization
Java Captain
Java Captain
Sep 1, 2020 · Operations

Comprehensive Guide to Java Online Fault Diagnosis: CPU, Disk, Memory, GC, and Network Issues

This article provides a detailed, step‑by‑step methodology for diagnosing and resolving common Java production problems—including CPU spikes, disk bottlenecks, memory leaks, garbage‑collection anomalies, and network timeouts—by leveraging native Linux tools and JVM utilities such as ps, top, jstack, jmap, jstat, iostat, vmstat, pidstat, and netstat.

CPUGCJava
0 likes · 19 min read
Comprehensive Guide to Java Online Fault Diagnosis: CPU, Disk, Memory, GC, and Network Issues
Efficient Ops
Efficient Ops
Aug 26, 2020 · Operations

Why Does Nginx Reset HTTPS Curl Requests? A Deep Dive and Fix

After adding an HTTPS certificate to a website, browsers load fine but curl requests are reset; this article chronicles the troubleshooting steps—examining network ports, cipher suites, client buffers, SSL session cache settings, and common Nginx error logs—to pinpoint and resolve the underlying cause.

HTTPSSSLcurl
0 likes · 11 min read
Why Does Nginx Reset HTTPS Curl Requests? A Deep Dive and Fix
FunTester
FunTester
Aug 12, 2020 · Operations

How to Fix Charles Proxy Helper Installation Error on macOS

This guide explains why Charles fails to install its macOS proxy helper, shows the problematic launch daemon plist, and provides step‑by‑step instructions to locate, edit, and restore the correct configuration so the proxy works again.

CharlesSystem ConfigurationmacOS
0 likes · 3 min read
How to Fix Charles Proxy Helper Installation Error on macOS
dbaplus Community
dbaplus Community
Aug 11, 2020 · Operations

7 Real-World Production Failures and Fast Diagnosis Techniques

The article shares seven authentic production incident cases—from JVM Full GC spikes and memory leaks to cache avalanches, disk I/O blocks, database deadlocks, DNS hijacking, and bandwidth exhaustion—detailing root causes, step‑by‑step troubleshooting methods, code snippets, and practical mitigation strategies for engineers.

Cache AvalancheDNS hijackingDatabase Deadlock
0 likes · 17 min read
7 Real-World Production Failures and Fast Diagnosis Techniques
Liangxu Linux
Liangxu Linux
Jul 19, 2020 · Operations

How to Diagnose Linux Performance Issues with Flame Graphs and System Tools

This guide explains how to systematically analyze Linux performance problems—including CPU, memory, disk I/O, network, and load—using 5W2H methodology, built‑in monitoring commands, perf, flame‑graph visualizations, and a real‑world Nginx case study to pinpoint and resolve bottlenecks.

Performanceflamegraphmonitoring
0 likes · 19 min read
How to Diagnose Linux Performance Issues with Flame Graphs and System Tools
FunTester
FunTester
Jun 9, 2020 · Operations

How to Quickly and Accurately Locate Online Bugs: A Practical Guide for Testers

This article outlines a systematic, step‑by‑step approach for testers to gather evidence, reproduce, and diagnose production bugs on mobile and web platforms, emphasizing thorough data collection, environment checks, and collaborative debugging to improve response speed and reliability.

Operationsbug trackingmobile testing
0 likes · 6 min read
How to Quickly and Accurately Locate Online Bugs: A Practical Guide for Testers
360 Tech Engineering
360 Tech Engineering
Jun 8, 2020 · Mobile Development

Replacing iOS LaunchImage with LaunchScreen.storyboard: Background, Preparation, Implementation, and Troubleshooting

This article explains why Apple requires apps to use LaunchScreen.storyboard instead of static LaunchImage after June 30 2020, details the preparation steps, presents three implementation approaches, and discusses device‑specific adaptation problems and persistent black‑screen issues with code examples.

LaunchImageLaunchScreenStoryboard
0 likes · 10 min read
Replacing iOS LaunchImage with LaunchScreen.storyboard: Background, Preparation, Implementation, and Troubleshooting
Programmer DD
Programmer DD
Jun 4, 2020 · Backend Development

How I Traced a Sudden Data Drop After a Feature Release: 14 Debugging Steps

After a new feature caused a sharp decline in data volume, I walked through a fourteen‑step troubleshooting process—verifying the issue, inspecting code, consulting DBAs, testing locally, checking configurations, logging, packet capture, load testing, and finally identifying a Kafka partition bottleneck—to restore normal operation.

Kafkatroubleshooting
0 likes · 9 min read
How I Traced a Sudden Data Drop After a Feature Release: 14 Debugging Steps
Liangxu Linux
Liangxu Linux
May 25, 2020 · Operations

Diagnosing Java Runtime Problems: CPU, Memory, Disk, and Network Tips

This guide walks through systematic troubleshooting of Java runtime issues—including CPU spikes, frequent garbage collection, memory leaks, disk bottlenecks, and network anomalies—by using Linux tools such as top, jstack, jstat, iostat, vmstat, and netstat, with concrete command examples and analysis steps.

GCJavaPerformance
0 likes · 18 min read
Diagnosing Java Runtime Problems: CPU, Memory, Disk, and Network Tips
ITPUB
ITPUB
May 25, 2020 · Operations

How to Fix Common yum Errors on CentOS 7: 404, Failed Install, and Missing Python

This guide walks through diagnosing and fixing typical yum command failures on CentOS 7, covering repository 404 errors, package installation failures caused by immutable directories, and missing Python interpreter issues, with concrete commands and step‑by‑step solutions.

CentOSPackage Managementlinux
0 likes · 5 min read
How to Fix Common yum Errors on CentOS 7: 404, Failed Install, and Missing Python
Selected Java Interview Questions
Selected Java Interview Questions
May 23, 2020 · Databases

Root Causes and Troubleshooting of Redis Timeout Exceptions

This article analyzes why Redis service nodes may experience massive TimeoutException errors, covering external influences such as CPU and memory contention, network resource exhaustion, and internal Redis usage issues like slow queries, persistence overhead, and configuration pitfalls, and provides concrete diagnostic commands and mitigation steps.

DatabasePerformanceRedis
0 likes · 9 min read
Root Causes and Troubleshooting of Redis Timeout Exceptions
Big Data Technology & Architecture
Big Data Technology & Architecture
May 16, 2020 · Big Data

Apache Kylin Single‑Node Installation Guide and Troubleshooting

This article provides a comprehensive step‑by‑step guide for installing Apache Kylin on a single machine, covering required software versions, environment variable configuration, Spark dependency handling, main Kylin properties, verification steps, and detailed solutions to common errors such as Zookeeper host issues, HTTP 404, Jackson conflicts, MapReduce jobhistory problems, missing Spark classes, HiveConf errors, and YARN shuffle service configuration.

Apache KylinBig DataHadoop
0 likes · 26 min read
Apache Kylin Single‑Node Installation Guide and Troubleshooting
dbaplus Community
dbaplus Community
Apr 15, 2020 · Operations

How to Diagnose and Fix a Dual‑Leader ZooKeeper Cluster

This article walks through a real‑world ZooKeeper incident where a five‑node cluster showed two leaders, explains the election rules, analyzes log and configuration mismatches, assesses business impact, and provides a step‑by‑step recovery plan to restore normal service without data loss.

ClusterOperationsZookeeper
0 likes · 10 min read
How to Diagnose and Fix a Dual‑Leader ZooKeeper Cluster
Open Source Linux
Open Source Linux
Apr 8, 2020 · Fundamentals

Mastering Network Fundamentals: OSI Model, TCP/IP Handshake, DNS & HTTP Explained

This article provides a comprehensive overview of core networking concepts, including the OSI seven-layer model, TCP/IP three-way handshake and four-way termination, DNS resolution process, HTTP request workflow, intra- and inter-subnet data transmission, Linux network configuration, and practical troubleshooting techniques for common connectivity issues.

NetworkingOSI modelTCP/IP
0 likes · 18 min read
Mastering Network Fundamentals: OSI Model, TCP/IP Handshake, DNS & HTTP Explained
Big Data Technology & Architecture
Big Data Technology & Architecture
Apr 8, 2020 · Big Data

Common Apache Flink Exceptions and How to Resolve Them

This article enumerates typical Apache Flink deployment, job, and checkpoint errors—such as JDK version issues, resource shortages, task manager timeouts, and state migration problems—and provides practical troubleshooting steps and configuration tips to help engineers quickly diagnose and fix these failures.

Big DataCheckpointException
0 likes · 8 min read
Common Apache Flink Exceptions and How to Resolve Them
Liangxu Linux
Liangxu Linux
Apr 1, 2020 · Operations

Understanding CPU Cores, Usage, and Load: A Practical Linux Performance Guide

This article explains CPU fundamentals, distinguishes physical and logical cores, shows how to retrieve CPU details on Linux, defines CPU usage and load average, offers practical thresholds, and provides step‑by‑step troubleshooting techniques for high user‑mode CPU consumption.

CPULoad AveragePerformance Monitoring
0 likes · 13 min read
Understanding CPU Cores, Usage, and Load: A Practical Linux Performance Guide
Open Source Linux
Open Source Linux
Mar 8, 2020 · Operations

Master Windows Command Line: Essential CMD, Ping, Tracert, and More

This guide explains how to open the Windows command prompt and provides clear usage examples for essential commands such as ping, tracert, ipconfig, route, netstat, telnet, common DOS commands, shortcut utilities, and creating custom cmd shortcuts for efficient system administration.

Networkingcmdcommand-line
0 likes · 6 min read
Master Windows Command Line: Essential CMD, Ping, Tracert, and More
ITPUB
ITPUB
Feb 10, 2020 · Operations

Essential Linux and Java Debugging Commands for Rapid Issue Diagnosis

This guide compiles a practical collection of Linux command‑line tricks and Java troubleshooting tools—such as tail, grep, awk, find, tsar, btrace, Greys, jstack, jmap and more—complete with usage examples, code snippets and visual outputs to help engineers quickly diagnose and resolve production problems.

Debuggingmonitoringtools
0 likes · 17 min read
Essential Linux and Java Debugging Commands for Rapid Issue Diagnosis
Big Data Technology Architecture
Big Data Technology Architecture
Jan 31, 2020 · Big Data

Practical Experience with HBase at NetEase: Architecture, Core Use Cases, HBCK & RIT Troubleshooting, and Diagnosis Strategies

This article summarizes NetEase Hangzhou Research Institute expert Fan Xinxin's presentation on HBase, covering its role in the big‑data ecosystem, core production scenarios, RIT and HBCK troubleshooting techniques, and systematic monitoring and log‑analysis methods for diagnosing HBase issues.

HBCKHBaseRIT
0 likes · 11 min read
Practical Experience with HBase at NetEase: Architecture, Core Use Cases, HBCK & RIT Troubleshooting, and Diagnosis Strategies
Aikesheng Open Source Community
Aikesheng Open Source Community
Jan 15, 2020 · Databases

MySQL 5.7 Monitoring and Troubleshooting Guide: Connections, Long Transactions, Metadata Locks, and More

This guide provides a comprehensive overview of MySQL 5.7 monitoring techniques, covering connection parameters, long‑running transactions, metadata lock tracing, lock‑wait analysis, global read locks, memory usage, partitioned tables, database size summaries, table update status, primary key and index considerations, storage engine distribution, and real‑time load metrics.

MySQLSQLtroubleshooting
0 likes · 6 min read
MySQL 5.7 Monitoring and Troubleshooting Guide: Connections, Long Transactions, Metadata Locks, and More
Efficient Ops
Efficient Ops
Jan 2, 2020 · Operations

When a Database Outage Turns Into a Comedy of Errors: A Real‑World Ops Tale

A chaotic incident‑response story shows how a DBA and SA scramble through VPN glitches, broken jump servers, log hunting, ad‑hoc config tweaks, unexpected bugs, security scans, and frantic firefighting to finally restore a production system, highlighting the messy reality of modern operations.

DatabaseDevOpsSQL
0 likes · 4 min read
When a Database Outage Turns Into a Comedy of Errors: A Real‑World Ops Tale
Efficient Ops
Efficient Ops
Dec 18, 2019 · Operations

Why Nginx Resets HTTPS Curl Requests and How to Fix It

This article walks through a real‑world Nginx HTTPS troubleshooting case where curl requests are reset, detailing packet captures, configuration tweaks, SSL session cache settings, and a comprehensive list of common Nginx error messages to help engineers quickly locate and resolve similar issues.

SSLServercurl
0 likes · 9 min read
Why Nginx Resets HTTPS Curl Requests and How to Fix It
Liangxu Linux
Liangxu Linux
Dec 16, 2019 · Fundamentals

Master Windows Network Troubleshooting: Essential Commands and Their Usage

This guide explains the most common Windows networking commands—ping, ipconfig, arp, traceroute, route, nslookup, netstat, and net—detailing their purpose, syntax, useful options, and example outputs to help you diagnose connectivity, routing, and configuration issues efficiently.

Windowscommand-lineipconfig
0 likes · 17 min read
Master Windows Network Troubleshooting: Essential Commands and Their Usage
Liangxu Linux
Liangxu Linux
Dec 9, 2019 · Operations

Mastering dmesg: View, Filter, and Control Linux Kernel Logs

This tutorial explains how the Linux kernel uses a circular buffer for log messages and shows how to use the dmesg command to display, format, filter, paginate, follow, and clear those logs, including permission handling and useful command‑line options.

Command Linedmesgsystem logging
0 likes · 8 min read
Mastering dmesg: View, Filter, and Control Linux Kernel Logs
360 Quality & Efficiency
360 Quality & Efficiency
Nov 19, 2019 · Operations

Common Fiddler Issues and Their Solutions

This article shares practical troubleshooting steps for frequent Fiddler problems such as HTTPS capture failures, proxy connection refusals caused by host or IPv6 settings, and registration errors after Windows upgrades, helping testers quickly resolve proxy configuration issues.

DebuggingFiddlerHTTPS
0 likes · 4 min read
Common Fiddler Issues and Their Solutions
DevOps Cloud Academy
DevOps Cloud Academy
Nov 14, 2019 · Cloud Computing

Practical Guide to Offline Installation of an OpenShift 4 Enterprise HA Cluster with Troubleshooting

This article details a step‑by‑step offline installation of an OpenShift 4 enterprise high‑availability cluster on bare‑metal, covering prerequisites, static‑IP configuration without DHCP or load balancers, mirror registry setup, installation pitfalls, post‑install tasks, and extensive troubleshooting tips.

Bare MetalOpenShiftStatic IP
0 likes · 16 min read
Practical Guide to Offline Installation of an OpenShift 4 Enterprise HA Cluster with Troubleshooting
Efficient Ops
Efficient Ops
Nov 7, 2019 · Operations

How BigBrother Revolutionizes Large‑Scale Virtual Network Connectivity Checks

BigBrother is a TCP‑based, full‑link, large‑scale network connectivity detection system that uses packet coloring and GRE mirroring to automatically locate virtual network faults across public, hybrid, and physical clouds, dramatically reducing troubleshooting time and supporting high‑concurrency tasks.

BigBrothernetwork connectivitytroubleshooting
0 likes · 16 min read
How BigBrother Revolutionizes Large‑Scale Virtual Network Connectivity Checks
dbaplus Community
dbaplus Community
Nov 3, 2019 · Databases

Mastering HikariCP: 7 Essential Metrics and Real-World Troubleshooting

An in‑depth guide walks through HikariCP’s seven most useful monitoring metrics, explains their types, shows real‑world examples of connection storms and slow SQL, and provides step‑by‑step troubleshooting methods, code insights, and configuration tips to keep your database connection pool healthy.

HikariCPJavaconnection-pool
0 likes · 34 min read
Mastering HikariCP: 7 Essential Metrics and Real-World Troubleshooting
Aikesheng Open Source Community
Aikesheng Open Source Community
Oct 17, 2019 · Databases

Understanding MySQL Slave Net Timeout, Master Heartbeat Period, and Their Impact on Relay Log Accumulation

The article analyzes a MySQL replication issue where a low slave_net_timeout combined with a larger MASTER_HEARTBEAT_PERIOD causes frequent zombie dump threads, leading to massive small relay‑log files, and provides detailed explanations, code references, and step‑by‑step remediation procedures.

HeartbeatMySQLdatabases
0 likes · 14 min read
Understanding MySQL Slave Net Timeout, Master Heartbeat Period, and Their Impact on Relay Log Accumulation
Programmer DD
Programmer DD
Sep 29, 2019 · Fundamentals

How to Fix IntelliJ Git Errors After a macOS Update

After upgrading macOS, IntelliJ may lose its Git executable path, causing errors, but you can resolve it by updating the Git path in Preferences → Version Control → Git and testing the configuration.

IDE configurationIntelliJmacOS
0 likes · 3 min read
How to Fix IntelliJ Git Errors After a macOS Update
Efficient Ops
Efficient Ops
Sep 9, 2019 · Operations

How to Diagnose and Fix High CPU Usage in a Java Web Portal

This guide walks through diagnosing a Java portal's high CPU usage by checking system load, identifying the offending thread, analyzing JVM stack traces, pinpointing a slow MySQL query, and resolving the issue with data cleanup and index creation, reducing CPU load from 800% to 40%.

IndexingPerformancetroubleshooting
0 likes · 4 min read
How to Diagnose and Fix High CPU Usage in a Java Web Portal
DevOps Cloud Academy
DevOps Cloud Academy
Aug 11, 2019 · Operations

Troubleshooting MooseFS Mount Errors and Related Issues

This guide details common MooseFS mounting problems—including bad mount points, firewall port blocks, error messages, and incomplete disk scans—and provides step‑by‑step commands such as killing processes, unmounting, remounting, and checking services to resolve these issues.

MooseFSMountfilesystem
0 likes · 2 min read
Troubleshooting MooseFS Mount Errors and Related Issues
FunTester
FunTester
Jul 28, 2019 · Fundamentals

How to Fix pip Uninstall Errors for NumPy When Installing Pandas on macOS

When rebuilding a Plotly environment on macOS, pip fails to uninstall the system‑installed NumPy, causing pandas installation errors, and the solution involves manually removing NumPy’s egg‑info, using a reliable PyPI mirror, and selecting compatible library versions.

NumPyPandasPlotly
0 likes · 4 min read
How to Fix pip Uninstall Errors for NumPy When Installing Pandas on macOS
Architecture Digest
Architecture Digest
Jul 15, 2019 · Databases

Oracle Database Troubleshooting: Common Scripts and Diagnostic Procedures

This article presents a practical guide for Oracle DBAs to quickly diagnose and resolve application‑related database issues by checking OS load, analyzing wait events, querying session and object details, capturing diagnostic dumps, and using scripted commands to kill sessions or restart the database.

DBAOraclePerformance
0 likes · 13 min read
Oracle Database Troubleshooting: Common Scripts and Diagnostic Procedures
ITPUB
ITPUB
Jun 11, 2019 · Databases

Why KEYS Can Crash Your Redis and How SCAN Keeps It Running

The article explains how using the KEYS command on large Redis datasets can block the single‑threaded server and cause outages, and demonstrates how the incremental SCAN command safely retrieves keys without impacting performance, including syntax, options, and practical examples.

DatabaseKEYSPerformance
0 likes · 4 min read
Why KEYS Can Crash Your Redis and How SCAN Keeps It Running
Java Backend Technology
Java Backend Technology
May 31, 2019 · Databases

Why MySQL UPDATE Appears to Do Nothing and How to Fix It

This article explains why a syntactically correct MySQL UPDATE statement may seem ineffective, demonstrates the difference between using commas and the AND operator for multi‑column updates, and provides the proper syntax to ensure the intended rows are modified.

DatabaseMySQLSQL syntax
0 likes · 3 min read
Why MySQL UPDATE Appears to Do Nothing and How to Fix It
Java Captain
Java Captain
May 2, 2019 · Operations

Essential Linux and JVM Tools for Troubleshooting and Performance Analysis

This article compiles a comprehensive set of Linux commands, JVM utilities, and Java debugging tools—including tail, grep, awk, find, tsar, btrace, greys, JProfiler, jps, jstack, jmap, jstat, and IntelliJ plugins—to help engineers quickly diagnose, monitor, and resolve production issues while optimizing performance.

DebuggingJVMPerformance
0 likes · 13 min read
Essential Linux and JVM Tools for Troubleshooting and Performance Analysis
UCloud Tech
UCloud Tech
Mar 28, 2019 · Databases

Why MySQL Replication Lag Happens and How to Fix It: Real-World Cases

This article examines the common causes of MySQL master‑slave replication delay, explains how to monitor the issue with SHOW SLAVE STATUS, and provides practical solutions for six typical scenarios ranging from heavy write traffic to hardware mismatches.

Database PerformanceMaster‑SlaveMySQL
0 likes · 13 min read
Why MySQL Replication Lag Happens and How to Fix It: Real-World Cases
Tencent Database Technology
Tencent Database Technology
Feb 27, 2019 · Operations

Elasticsearch Cluster Recovery Pitfall: Excessive Shard Recovery Concurrency Leads to Cluster Hang

This article details a real‑world Elasticsearch cluster recovery issue where setting the shard recovery concurrency too high saturated the generic thread pool, causing the entire cluster to hang, and explains the underlying concepts, reproduction steps, analysis, and mitigation measures.

Cluster Recoveryshard-recoverythread-pool
0 likes · 10 min read
Elasticsearch Cluster Recovery Pitfall: Excessive Shard Recovery Concurrency Leads to Cluster Hang
360 Tech Engineering
360 Tech Engineering
Feb 19, 2019 · Backend Development

Troubleshooting Guide for Setting Up HttpRunnerManager with Python, Django, RabbitMQ, MySQL and Related Modules

This article first briefly introduces the traditional Chinese lantern‑festival foods 元宵 and 汤圆, then provides a step‑by‑step troubleshooting guide for installing and configuring the HttpRunnerManager environment, covering Python version selection, RabbitMQ security, Django and djcelery installation, MySQL client and charset settings, remote access configuration, and YAML module installation.

DjangoMySQLPython
0 likes · 5 min read
Troubleshooting Guide for Setting Up HttpRunnerManager with Python, Django, RabbitMQ, MySQL and Related Modules
Architects' Tech Alliance
Architects' Tech Alliance
Feb 11, 2019 · Fundamentals

Understanding Power over Ethernet (PoE): Principles, Advantages, Deployment, Troubleshooting, and Design Guidelines

This article provides a comprehensive overview of Power over Ethernet (PoE), covering its definition, mid‑span and end‑span power delivery methods, operational workflow, advantages, troubleshooting tips, distance calculations, switch power considerations, stability factors, and best‑practice recommendations for network and security deployments.

PoEPower over Ethernetdeployment
0 likes · 15 min read
Understanding Power over Ethernet (PoE): Principles, Advantages, Deployment, Troubleshooting, and Design Guidelines
MaGe Linux Operations
MaGe Linux Operations
Jan 23, 2019 · Operations

Mastering tcpdump: Practical Commands for Network Packet Capture

This guide explains how to use tcpdump for network packet capture, covering basic commands, filtering by interface, host, port, protocol, advanced examples, saving captures to files, and a practical troubleshooting scenario involving Nginx and a Node.js server.

linuxnetwork monitoringpacket capture
0 likes · 8 min read
Mastering tcpdump: Practical Commands for Network Packet Capture
ITPUB
ITPUB
Jan 3, 2019 · Operations

How to Quickly Pinpoint High CPU Usage in Java Services on Linux

When a data platform server spikes to 98% CPU despite low traffic, this guide walks you through using Linux tools and Java thread analysis to locate the offending process, identify the problematic code, and apply a targeted fix that drops CPU load dramatically.

CPUJavaPerformance
0 likes · 7 min read
How to Quickly Pinpoint High CPU Usage in Java Services on Linux
MaGe Linux Operations
MaGe Linux Operations
Dec 28, 2018 · Operations

Master Linux Network Management with the Powerful ip Command

This guide explains how to install iproute2, use the ip command to configure IP addresses, manage routing tables, monitor network statistics, handle ARP entries, and troubleshoot Linux networking, providing clear examples and command-line snippets for system administrators.

ip commandiproute2linux
0 likes · 6 min read
Master Linux Network Management with the Powerful ip Command
JD Tech
JD Tech
Dec 13, 2018 · Operations

Monitoring Puppet Configuration Management: Workflow, Metrics, and Troubleshooting

This article explains how to monitor the Puppet configuration management system, covering its request‑response‑execution‑report workflow, key monitoring metrics, black‑box and white‑box monitoring approaches, common issues, and practical solutions for ensuring large‑scale cluster consistency.

OperationsPuppetconfiguration management
0 likes · 8 min read
Monitoring Puppet Configuration Management: Workflow, Metrics, and Troubleshooting
21CTO
21CTO
Nov 14, 2018 · Operations

Master Linux Performance: From 5W2H Methodology to Flame Graphs

This comprehensive guide explains how to diagnose Linux performance issues using a structured 5W2H approach, introduces essential monitoring tools for CPU, memory, disk I/O, and network, and demonstrates practical flame‑graph techniques—including on‑CPU, off‑CPU, memory, and differential analyses—to quickly locate and resolve bottlenecks.

Performanceflamegraphmonitoring
0 likes · 20 min read
Master Linux Performance: From 5W2H Methodology to Flame Graphs
Java Backend Technology
Java Backend Technology
Nov 5, 2018 · Databases

Top 10 MySQL Errors Every DBA Should Know and How to Fix Them

This article presents ten classic MySQL error scenarios—from connection limits and replication conflicts to permission issues and timeout settings—explaining their causes, illustrating them with screenshots, and offering concrete configuration tweaks and procedural steps to resolve each problem efficiently.

Database ErrorsMySQLPerformance
0 likes · 9 min read
Top 10 MySQL Errors Every DBA Should Know and How to Fix Them
360 Tech Engineering
360 Tech Engineering
Oct 12, 2018 · Mobile Development

Fixing Xcode 10 Simulator Launch Failure on macOS Mojave

This guide explains how to resolve the Xcode 10 simulator launch hang on macOS Mojave by backing up, removing, and restoring Xcode's PlugIns folder, along with additional steps such as checking the scheme and resetting the simulator.

SimulatorXcodeiOS development
0 likes · 4 min read
Fixing Xcode 10 Simulator Launch Failure on macOS Mojave