Tag

Core Dump

0 views collected around this technical thread.

Deepin Linux
Deepin Linux
Jan 20, 2025 · Backend Development

Understanding and Analyzing Linux Core Dumps with GDB

This article explains Linux core dump generation, common causes such as null pointer dereference and array overflow, configuration steps, and demonstrates how to analyze core files using GDB with practical code examples and multi‑threaded case studies.

C programmingCore DumpGDB
0 likes · 24 min read
Understanding and Analyzing Linux Core Dumps with GDB
Aikesheng Open Source Community
Aikesheng Open Source Community
Oct 28, 2024 · Databases

Analysis of a MySQL 8.0.35 Crash Bug Caused by InnoDB Assertion Failure

This article details a MySQL 8.0.35 crash caused by an InnoDB assertion that a VARCHAR length exceeds 65,535 bytes, explains the error‑log and core‑dump analysis, shows how to reproduce the bug, and notes its resolution in MySQL 8.0.35.

Bug AnalysisCore DumpInnoDB
0 likes · 21 min read
Analysis of a MySQL 8.0.35 Crash Bug Caused by InnoDB Assertion Failure
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Jul 13, 2024 · Information Security

OpenCoreAnalysisKit: Open‑Source Offline Memory Core File Analysis Suite for Android

This article introduces the OpenCoreAnalysisKit project, an open‑source suite for offline analysis of Android Core memory files across multiple architectures, detailing its components, build requirements, usage guides for kernel‑ and user‑mode debugging, and various command‑line tools and code snippets for comprehensive reverse‑engineering and memory‑analysis workflows.

AndroidCore DumpReverse Engineering
0 likes · 20 min read
OpenCoreAnalysisKit: Open‑Source Offline Memory Core File Analysis Suite for Android
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Nov 22, 2023 · Mobile Development

Art‑Parser: Offline Android Core Dump Extraction and Native Crash Analysis

This article introduces the art‑parser tool for offline Android core‑dump analysis, detailing its origin, project structure, core‑file acquisition methods, page‑repair techniques, object inspection commands, and the challenges of open‑sourcing the utility for mobile developers.

AndroidCore DumpNative Crash
0 likes · 18 min read
Art‑Parser: Offline Android Core Dump Extraction and Native Crash Analysis
Baidu Intelligent Testing
Baidu Intelligent Testing
Sep 30, 2021 · Fundamentals

Understanding Core Dumps and Debugging Techniques with GDB

This article explains what program core dumps are, how to interpret core‑dump files, and provides detailed GDB debugging techniques—including register inspection, stack frame analysis, variable printing, memory dumping, and handling optimized code—to locate and resolve the root causes of crashes.

C++Core DumpGDB
0 likes · 16 min read
Understanding Core Dumps and Debugging Techniques with GDB
Baidu Geek Talk
Baidu Geek Talk
Aug 11, 2021 · Operations

Analyzing Core Dumps and Debugging Techniques with GDB

The article explains how to analyze core‑dump files with GDB by examining the function call stack, key registers, and memory contents, classifying crash causes, using GDB commands to inspect variables and addresses, reconstructing corrupted stacks, handling optimized‑away data and vtable errors, and following a systematic debugging workflow.

C++Core DumpGDB
0 likes · 17 min read
Analyzing Core Dumps and Debugging Techniques with GDB
Aikesheng Open Source Community
Aikesheng Open Source Community
Nov 6, 2020 · Backend Development

Analyzing MySQL Crash Without Core Dump Using Error Log and GDB

This article explains how to investigate a MySQL crash when core dumps are disabled by extracting the crash address from the error log, obtaining the matching binary, using GDB to map the address to source code, and decoding encoded function signatures to pinpoint the underlying bug.

Core DumpGDBMySQL
0 likes · 3 min read
Analyzing MySQL Crash Without Core Dump Using Error Log and GDB
Beike Product & Technology
Beike Product & Technology
Sep 6, 2019 · Operations

Analyzing Core Dumps in Linux PHP Production Environments: Tools, Causes, and Solutions

This article explains core dumps, their history, generation, impact on services, and provides a detailed Linux PHP case study with step‑by‑step debugging using strace, gdb, and ulimit, culminating in root‑cause analysis and remediation recommendations.

Core DumpGDBLinux
0 likes · 31 min read
Analyzing Core Dumps in Linux PHP Production Environments: Tools, Causes, and Solutions
Baidu Intelligent Testing
Baidu Intelligent Testing
Mar 26, 2018 · Fundamentals

C/C++ Segment Fault Case Analysis and Debugging Techniques

This article presents a comprehensive analysis of real-world C/C++ core dump cases, categorizing common causes such as stack integrity, memory leaks, multithreading issues, and misuse of system libraries, and offers practical debugging strategies and code examples to help developers prevent and resolve such crashes.

C++Core Dumpdebugging
0 likes · 17 min read
C/C++ Segment Fault Case Analysis and Debugging Techniques
Hujiang Technology
Hujiang Technology
Jul 17, 2017 · Operations

Resolving Missing Core Dumps When Using Supervisor on CentOS 6.5

This article explains why C/C++ applications managed by Supervisor on CentOS 6.5 fail to generate core dump files, analyzes the environment differences that set the core file size limit to zero, and provides both temporary and permanent fixes by adjusting ulimit settings and modifying Supervisor's options.py.

Core DumpLinuxSupervisor
0 likes · 6 min read
Resolving Missing Core Dumps When Using Supervisor on CentOS 6.5
Qunar Tech Salon
Qunar Tech Salon
Jul 13, 2016 · Backend Development

Debugging Rare Core Dumps and Memory Leaks in High‑Concurrency Nginx with OpenSSL

The article describes a real‑world investigation of extremely rare core‑dump bugs and memory‑leak issues in a heavily modified Nginx+OpenSSL stack under high‑concurrency, detailing the debugging workflow, custom stress‑test tools, use of gdb, valgrind, AddressSanitizer, perf, flame graphs and performance‑tuning lessons.

Core DumpMemory LeakNginx
0 likes · 20 min read
Debugging Rare Core Dumps and Memory Leaks in High‑Concurrency Nginx with OpenSSL
Architecture Digest
Architecture Digest
Jun 18, 2016 · Backend Development

Debugging Rare Core Dumps and Memory Leaks in High‑Concurrency Nginx with OpenSSL

The article describes a real‑world investigation of extremely low‑probability core dumps and memory leaks in a heavily modified Nginx + OpenSSL stack, detailing the debugging workflow, custom high‑concurrency test harness, use of tools such as GDB, perf, Valgrind, AddressSanitizer, and the performance‑hotspot analysis that ultimately resolved the issues.

Core DumpMemory LeakNginx
0 likes · 19 min read
Debugging Rare Core Dumps and Memory Leaks in High‑Concurrency Nginx with OpenSSL
Baidu Intelligent Testing
Baidu Intelligent Testing
May 19, 2016 · Fundamentals

Common Causes of C/C++ Core Dumps and Case Analyses

This article categorizes typical reasons why C/C++ programs generate core dumps, such as unreasonable program design, misuse of system libraries, memory leaks, type errors, thread ID handling, infinite loops, and improper initialization or cleanup, and provides illustrative case analyses for each scenario.

C++Core DumpLinux
0 likes · 6 min read
Common Causes of C/C++ Core Dumps and Case Analyses
Baidu Intelligent Testing
Baidu Intelligent Testing
May 12, 2016 · Fundamentals

Analysis of Common Causes and Debugging Methods for C/C++ Core Dumps

This article classifies the typical reasons why C/C++ programs generate core dumps, explains how to use gdb and other techniques to locate the faults, and provides concrete case studies covering error handling, multithreading issues, and third‑party library pitfalls.

C++Core DumpGDB
0 likes · 11 min read
Analysis of Common Causes and Debugging Methods for C/C++ Core Dumps