在CentOS或者suse等Linux系统中默认是关闭coredump核心转储的,也就不会产生core文件。由于在C/C++开发中会用到gdb调试,所以需要开启coredump功能。下面是具体的配置命令,可以保存为一个简单的shell脚本执行。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
#!/bin/bash@H_502_15@
### Filename: coredumpshell.sh@H_502_15@
### Description: enable coredump and format the name of core file on centos system@H_502_15@
# enable coredump whith unlimited file-size for all users@H_502_15@
echo@H_502_15@ -e "\n# enable coredump whith unlimited file-size for all users\n* soft core unlimited"@H_502_15@ >> /etc/security/limits.conf
# set the path of core file with permission 777 @H_502_15@
cd@H_502_15@ /mydata &&@H_502_15@ mkdir corefile &&@H_502_15@ chmod 777@H_502_15@ corefile
# format the name of core file. @H_502_15@
# %% – 符号%@H_502_15@
# %p – 进程号@H_502_15@
# %u – 进程用户id@H_502_15@
# %g – 进程用户组id@H_502_15@
# %s – 生成core文件时收到的信号@H_502_15@
# %t – 生成core文件的时间戳(seconds since 0:00h,1 Jan 1970)@H_502_15@
# %h – 主机名@H_502_15@
# %e – 程序文件名@H_502_15@
echo@H_502_15@ -e "/mydata/corefile/core-%e-%s-%u-%g-%p-%t"@H_502_15@ > /proc/sys/kernel/core_pattern
# suffix of the core file name@H_502_15@
echo@H_502_15@ -e "1"@H_502_15@ > /proc/sys/kernel/core_uses_pid
|
在Linux终端上执行完上面的脚本后,退出并重新登录即可生效。可以通过[root@typecodes ~]# ulimit -a
命令查看效果,如下图所示:
本人在centos7中亲测有限,感谢作者。
原创地址:https://typecodes.com/linux/centoscoredumpcfgshell.html