开始以为是core文件太大,设置ulimit -c unlimited 以后,再次访问,显示
./a.out
Segmentation fault (core dumped)
但是却找不到这个文件的地方,最后
sysctl kernel.core_pattern
kernel.core_pattern = /apsara/tubo/corefile/core-%e-%p-%t-%h
这里设置了core文件所在的目录,最后果然在这个下面
ls /apsara/tubo/corefile/core-a.out-*
/apsara/tubo/corefile/core-a.out-10105-1403693584-r12f13056.dg.aliyun.com
/apsara/tubo/corefile/core-a.out-24520-1403693738-r12f13056.dg.aliyun.com
/apsara/tubo/corefile/core-a.out-15609-1403693600-r12f13056.dg.aliyun.com
看来是为了防止core文件把磁盘写满采取的措施,这样挂接在远程磁盘就ok了
core文件找不到了
时间: 2024-09-13 01:01:57