[转帖]CoreDump设置方式

coredump,设置,方式 · 浏览次数 : 0

小编点评

## Generate Core Dump File Size Limit and Path This guide explains how to set core file size limits and configure the save location and naming for core dump files on Linux systems. **Setting Size Limits:** 1. **`ulimit -a 1240`**: This sets the core file size limit to 1240 kilobytes. 2. **`ulimit -c core file size:unlimited`**: This sets the core file size limit to "unlimited", which effectively disables the limit. 3. **`ulimit -c fileSize`**: This displays the current core file size, which is limited by the default value. 4. **`ulimit -c fileSize -`**: This sets the core file size to the same value as `ulimit -a 1240`. **Setting Core File Name and Path:** 1. **Default Name:** Core files are usually generated with the name `core` and saved in the directory specified by `core_pattern`. 2. **`core.pid` Extension:** To add the process ID to the filename, use `core.pid0` as the extension. 3. **`core.name` with PID:** For the file name, simply use `core-` followed by the process ID. 4. **Path Modification:** - Use `echo ` to add the current user ID to the filename. - Use `sysctl -w` to set the path. **Testing Core File Generation:** 1. Check if core files are created by running `ls -l /proc/sys/kernel/core_pattern`. 2. Use `cat /proc/sys/kernel/core_pattern` to view the content and verify the generated filename. **Additional Tips:** * Use `man core_pattern` for detailed information about the `core_pattern` variable. * Explore the `sysctl` command for more configuration options related to core files.

正文

https://www.jianshu.com/p/f5c3134072d2

 

本文讲述利用coredump调试时,对coredump信息相关的设置方式。

设置core文件大小

  • 列出所有资源的限制

    #ulimit -a
    1240
    
  • 查看core file size

    #ulimit -c
    

    这里对于 core file size:

    unlimited:core文件的大小不受限制
    0:程序出错时不会产生core文件
    1024:代表1024k,core文件超出该大小就不能生成了
    
  • 设置core文件大小

    #ulimit -c fileSize
    

    注意:尽量将这个文件大小设置得大一些,程序崩溃时生成Core文件大小即为程序运行时占用的内存大小。可能发生堆栈溢出的时候,占用更大的内存

查看CoreDump文件路径配置

  • 方法1:

    #cat /proc/sys/kernel/core_pattern
    
  • 方法2:

    #/sbin/sysctl kernel.core_pattern
    

修改core dump文件路径

  • 方法1-临时修改

    修改 /proc/sys/kernel/core_pattern 文件,但/proc目录本身是动态加载的,每次系统重启都会重新加载,因此这种方法只能作为临时修改。

    例如:

    #echo ‘/var/log/%e.core.%p’ > /proc/sys/kernel/core_pattern
    
  • 方法2:永久修改

    使用 sysctl -w name=value 命令。

    例如:

    #sysctl -w kernel.core_pattern=/var/log/%e.core.%p
    

另外,为了更详尽的记录core dump当时的系统状态,可通过以下参数来丰富core文件的命名:

%% 单个%字符
%p 所dump进程的进程ID
%u 所dump进程的实际用户ID
%g 所dump进程的实际组ID
%s 导致本次core dump的信号
%t core dump的时间 (由1970年1月1日计起的秒数)
%h 主机名
%e 程序文件名

测试是否能生成core文件

首先,向目标进程发送信号产生coredump

#kill -s SIGSEGV $$

这里,使用当前进程的进程号,即 $$ 。

其次,根据前面配置的文件路径,查看对应目录下是否生成了coredump文件

参考

  • https://www.cnblogs.com/xiaodoujiaohome/p/6222895.html

  • https://www.jianshu.com/p/dc7e7bd7d1a2

  • linux下生成core dump文件方法及设置

    登陆 LINUX 服务器,任意位置键入
    echo "ulimit -c 1024" >> /etc/profile
    退出 LINUX 重新登陆 LINUX
    键入 ulimit -c
    如果显示 1024 那么说明 coredump 已经被开启。
    1024 限制产生的 core 文件的大小不能超过 1024kb,可以使用参数unlimited,取消该限制
    ulimit -c unlimited
    
    
     . 设置 Core Dump 的核心转储文件目录和命名规则
     /proc/sys/kernel/core_uses_pid 可以控制产生的 core 文件的文件名中是否添加 pid 作为扩展 ,如果添加则文件内容为 1 ,否则为 0
     proc/sys/kernel/core_pattern 可以设置格式化的 core 文件保存位置或文件名 ,比如原来文件内容是 core-%e
     可以这样修改 :
     echo "/corefile/core-%e-%p-%t" > core_pattern
     将会控制所产生的 core 文件会存放到 /corefile 目录下,产生的文件名为 core- 命令名 -pid- 时间戳
    
    
    ulimit -c unlimited
    echo "/tmp/core-%e-%p" > /proc/sys/kernel/core_pattern
    gcc -o main -g a.c
    gdb main /tmp/core-main-10815
    
  • https://blog.csdn.net/u011417820/article/details/71435031

    1.设置core文件大小
    列出所有资源的限制: ulimit -a
    1240
    ulimit -a.png
    或者查看core file size: ulimit -c
    
    core file size:
    unlimited:core文件的大小不受限制
    0:程序出错时不会产生core文件
    1024:代表1024k,core文件超出该大小就不能生成了
    设置core文件大小: ulimit -c fileSize
    
    注意:
    尽量将这个文件大小设置得大一些,程序崩溃时生成Core文件大小即为程序运行时占用的内存大小。可能发生堆栈溢出的时候,占用更大的内存
    
    
    2.设置core文件的名称和文件路径
    默认生成路径:输入可执行文件运行命令的同一路径下
    默认生成名字:默认命名为core。新的core文件会覆盖旧的core文件
    a.设置pid作为文件扩展名
    
    1:添加pid作为扩展名,生成的core文件名称为core.pid
    0:不添加pid作为扩展名,生成的core文件名称为core
    修改 /proc/sys/kernel/core_uses_pid 文件内容为: 1
    修改文件命令: echo "1" > /proc/sys/kernel/core_uses_pid
    或者
    sysctl -w kernel.core_uses_pid=1 kernel.core_uses_pid = 1
    b. 控制core文件保存位置和文件名格式
    
    修改文件命令: echo "/corefile/core-%e-%p-%t" > /proc/sys/kernel/core_pattern
    或者:
    sysctl -w kernel.core_pattern=/corefile/core-%e-%p-%t kernel.core_pattern = /corefile/core-%e-%p-%t
    可以将core文件统一生成到/corefile目录下,产生的文件名为core-命令名-pid-时间戳
    以下是参数列表:
    %p - insert pid into filename 添加pid(进程id)
    %u - insert current uid into filename 添加当前uid(用户id)
    %g - insert current gid into filename 添加当前gid(用户组id)
    %s - insert signal that caused the coredump into the filename 添加导致产生core的信号
    %t - insert UNIX time that the coredump occurred into filename 添加core文件生成时的unix时间
    %h - insert hostname where the coredump happened into filename 添加主机名
    %e - insert coredumping executable name into filename 添加导致产生core的命令名
    
    3.测试是否能生成core文件
    kill -s SIGSEGV $$
    查看/corefile目录下是否生成了core文件
    
  • https://blog.csdn.net/yasi_xi/article/details/16118349

    最近遇到一个问题,SUSE Linux系统中的某个应用程序异常而最终引发了系统core dump,但遗憾的时在系统重启后并没有找到core文件,影响了我们对问题的分析定位。
    
    经过分析发现系统默认的core文件生成路径是/var/logs,但/var/logs目录并非系统自带的,系统初始安装默认自带的是/var/log,最终导致该系统出现core dump后并没能生成core文件,因此如何查询和修改系统默认的core dump文件生产路径呢?方法如下:
    
    一. 查询core dump文件路径:
    方法1:
    # cat /proc/sys/kernel/core_pattern
    
    方法2:
    # /sbin/sysctl kernel.core_pattern
    
    二. 修改core dump文件路径:
    方法1:临时修改:修改/proc/sys/kernel/core_pattern文件,但/proc目录本身是动态加载的,每次系统重启都会重新加载,因此这种方法只能作为临时修改。
    /proc/sys/kernel/core_pattern
    例:echo ‘/var/log/%e.core.%p’ > /proc/sys/kernel/core_pattern
    
    方法2:永久修改:使用sysctl -w name=value命令。
    例:/sbin/sysctl -w kernel.core_pattern=/var/log/%e.core.%p
    
    为了更详尽的记录core dump当时的系统状态,可通过以下参数来丰富core文件的命名:
    %% 单个%字符
    %p 所dump进程的进程ID
    %u 所dump进程的实际用户ID
    %g 所dump进程的实际组ID
    %s 导致本次core dump的信号
    %t core dump的时间 (由1970年1月1日计起的秒数)
    %h 主机名
    %e 程序文件名

与[转帖]CoreDump设置方式相似的内容:

[转帖]CoreDump设置方式

https://www.jianshu.com/p/f5c3134072d2 本文讲述利用coredump调试时,对coredump信息相关的设置方式。 设置core文件大小 列出所有资源的限制 #ulimit -a 1240 查看core file size #ulimit -c 这里对于 cor

[转帖]Linux句柄调优之nofile、nr_open、file-max

https://www.jianshu.com/p/8fb056e7b9f8 在开发运维的时候我们常常会遇到类似“Socket/File: Can’t open so many files”,“无法打开更多进程”,或是coredump过大等问题,这些都可以设置资源限制来解决。今天在教某位客户设置最大

[转帖]Linux句柄调优之nofile、nr_open、file-max

https://www.jianshu.com/p/8fb056e7b9f8 在开发运维的时候我们常常会遇到类似“Socket/File: Can’t open so many files”,“无法打开更多进程”,或是coredump过大等问题,这些都可以设置资源限制来解决。今天在教某位客户设置最大

[转帖]Linux句柄调优之nofile、nr_open、file-max

https://www.jianshu.com/p/8fb056e7b9f8 在开发运维的时候我们常常会遇到类似“Socket/File: Can’t open so many files”,“无法打开更多进程”,或是coredump过大等问题,这些都可以设置资源限制来解决。今天在教某位客户设置最大

[转帖]踩内存问题分析工具

序 踩内存问题,大家都知道,是一个比较难分析的问题。 踩内存问题被发现,通常是程序崩溃的时候,能够生成coredump分析,知道是哪个内存被踩了,但通常是很难分析出是哪段代码出现了踩内存的问题。 本文会介绍几种分析踩内存问题的工具,有些工具是最近发现的,我还没有大量使用过,所以只是个简单的介绍,各位

[转帖]Kdump调试机理详细总结(一)

https://blog.csdn.net/luckiers/category_11796393.html 一、简介 本文主要讲解Kdump的运行机理,后续两个章节会详细介绍kdump的使用和如何分析coredump文件信息,具体链接如下: Kdump配置及使用详细总结(二) crash工具分析vm

[转帖]Core dump实战分析之Java版

https://www.jianshu.com/p/2cdf71f99209 Core dump实战分析(Java版) 背景 项目中的battleserver进程在某一段时间总是crash,无法找到具体Crash原因 Java通过JNI调用Luajit 那么进程Crash如何找到JNI的堆栈(C层)

[转帖]

Linux ubuntu20.04 网络配置(图文教程) 因为我是刚装好的最小系统,所以很多东西都没有,在开始配置之前需要做下准备 环境准备 系统:ubuntu20.04网卡:双网卡 网卡一:供连接互联网使用网卡二:供连接内网使用(看情况,如果一张网卡足够,没必要做第二张网卡) 工具: net-to

[转帖]

https://cloud.tencent.com/developer/article/2168105?areaSource=104001.13&traceId=zcVNsKTUApF9rNJSkcCbB 前言 Redis作为高性能的内存数据库,在大数据量的情况下也会遇到性能瓶颈,日常开发中只有时刻

[转帖]ISV 、OSV、 SIG 概念

ISV 、OSV、 SIG 概念 2022-10-14 12:29530原创大杂烩 本文链接:https://www.cndba.cn/dave/article/108699 1. ISV: Independent Software Vendors “独立软件开发商”,特指专门从事软件的开发、生产、