php没有coredump文件的解决办法:1、查看shell配置里有没有“ulimit -c 0”操作;2、全局coredump开启;3、退出重新登录shell,并修改配置即可。
本文操作环境:ubuntu 16.04系统、PHP7.1版,DELL G3电脑
php 没有coredump文件怎么办?如何查看php-fpm core dump 文件的错误?
开启php的coredump输出,修改ulimit -c就可以了,但是很多情况下,会提示权利受限,无法修改
[fukun@10.16.29.xxx]$ ulimit -a core file size (blocks, -c) 0 data seg size (kbytes, -d) unlimited scheduling priority (-e) 0 file size (blocks, -f) unlimited pending signals (-i) 30678 max locked memory (kbytes, -l) 64 max memory size (kbytes, -m) unlimited open files (-n) 32768 pipe size (512 bytes, -p) 8 POSIX message queues (bytes, -q) 819200 real-time priority (-r) 0 stack size (kbytes, -s) 10240 cpu time (seconds, -t) unlimited max user processes (-u) 1024 virtual memory (kbytes, -v) unlimited file locks (-x) unlimited $ ulimit -c unlimited -bash: ulimit: core file size: cannot modify limit: Operation not permitted
解决方案:
1.检查配置
看看shell配置里有没有 ulimit -c 0 这种类似的关闭的操作,例如
$HOME/.bash_profile 或者 $HOME/.bashrc 之类的,如果有,注释掉。 # # Do not produce core dumps # # ulimit -c 0
2. 全局coredump开启
使用root用户,修改 /etc/security/limits.conf
# /etc/security/limits.conf # # Each line describes a limit for a user in the form: # # <domain> <type> <item> <value> # * soft core unlimited
3.退出并从新登录shell,修改配置
ssh fukun@10.16.29.xxx [fukun@10.16.29.xxx]$ ulimit -c 0
先切换成root用户进行设置
su - ulimit -c unlimited ulimit -c unlimited
然后切换回自己的用户进行设置
su - fukun ulimit -c unlimited ulimit -c unlimited
以上3步有可能不是必须的,但是只要按这个步骤来,肯定能设置成功,在其它方法设置不成功的时候,按这个步骤来试试把。
【推荐学习:PHP视频教程】
Atas ialah kandungan terperinci php 没有coredump文件怎么办. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!