Amazon Linux上的Nginx + php-fpm =在信号11上退出 [英] Nginx + php-fpm on Amazon Linux = exited on signal 11

查看:136
本文介绍了Amazon Linux上的Nginx + php-fpm =在信号11上退出的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

最新的Amazon Linux

PHP 5.4.19(cli)(内置:2013年9月3日23:19:23)

nginx版本:nginx/1.2.9

已安装PHP-FPM:PHP 5.4.19(fpm-fcgi)(内置:2013年9月3日23:22:01)

phpinfo()正在工作

phpinfo() is working

pma.nginx.conf:

server {
listen 80;
server_name pma.my.server;

root /usr/share/phpmyadmin;
index index.php;
charset UTF-8;

access_log /var/log/myserver/pma.access.log;
error_log /var/log/myserver/pma.error.log;

location ~ \.php$ {
    include fastcgi_params;
    fastcgi_pass  php-fpm;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME /usr/share/phpmyadmin/$fastcgi_script_name;
    fastcgi_param DOCUMENT_ROOT /usr/share/phpmyadmin/;
    fastcgi_intercept_errors on;
}

}

/var/log/myserver/pma.error.log:

[error] 21374#0: *13 recv() failed (104: Connection reset by peer) while reading response header from upstream, client: 1.0.255.202, server: pma.my.server, request: "GET /js/get_image.js.php?theme=pmahomme HTTP/1.1", upstream: "fastcgi://unix:/var/run/php-fpm/php-fpm.sock:", host: "pma.my.server", referrer: "http://pma.my.server/"

/var/log/php-fpm/error.log

NOTICE: fpm is running, pid 21598
NOTICE: ready to handle connections
WARNING: [pool www] child 21600 exited on signal 11 (SIGSEGV) after 12.862493 seconds from start
NOTICE: [pool www] child 21614 started
WARNING: [pool www] child 21602 exited on signal 11 (SIGSEGV) after 13.768522 seconds from start
NOTICE: [pool www] child 21617 started

/var/log/messages

kernel: [12499.658777] php-fpm[21603]: segfault at 0 ip 00000000005c5a39 sp 00007fffb44d6d60 error 4 in php-fpm[400000+31c000]

我在Nginx和FastCGI方面没有丰富的经验,所以我需要您的帮助.你有什么想法?预先感谢

I don't have big experience with Nginx and FastCGI, so I need your help. Do you have any ideas? Thanks in advance

推荐答案

看来,PHP试图将会话数据写入磁盘中一个实际上不可写的目录,即/var/lib/php/session.

it appears that PHP is trying to write session data to disk in a directory that's not actually writable, namely /var/lib/php/session.

感谢Michael Hampton

这篇关于Amazon Linux上的Nginx + php-fpm =在信号11上退出的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆