php fpm 异常退出,nginx – PHP-FPM在致命的php错误后提供空白...

我在arch linux上有一个自定义的nginx和php-fpm设置.我将在下面发布我的配置.我想我现在已经阅读了这两个程序的文档,从现在开始大约6次,但是我已经达到了这样的程度,我根本无法从系统中挤出任何更多的信息,因此没有任何东西留给谷歌.这是瘦的:

我从头开始编译nginx和php(我对此非常熟悉,因此可能没有问题).我已经设置了nginx以正确地提供服务,它始终如一地执行:php文件通过unix套接字传递(对于http用户来说,它既是存在的,也是可读/可写的,这是nginx和nginx的用户php-fpm run as),而现有的常规文件得到服务.调用文件夹和调用不存在的文件都发送到/index.php文件.所有权限都是有序的.

问题

我的网页服务得很好,直到出现php错误.错误被转储到nginx的错误日志,并且来自该特定子进程php-fpm的页面的所有进一步请求都返回空白.它们看起来似乎是经过处理的,事实证明后续调用带有错误的文件会继续将错误消息转储到日志文件中,但有缺陷和干净的文件都会返回完全空白,并带有200状态代码.

更糟糕的是,我发现如果我只是坐在它上几分钟,有问题的php-fpm子进程不会死,但是在下一个请求中会生成一个新进程,并且新进程正确地为页面提供服务.从那时起,每个第二个请求都是空白的,而另一个请求恢复正常,可能是因为子进程轮流提供请求.

我的测试如下:

// web directory listing:

mysite/

--index.php

--bad_file.php

--imgs/

----test.png

----test2.png

index.php文件:

die('all cool');

?>

bad_file.php *:

non_existent_function($called);

?>

*注意:我之前发布了bad_file.php来包含$forgetting_the_semicolon = true行,但发现这实际上并没有产生我正在谈论的错误(这是我现在自己实现的一个简化示例)系统).但是,上面的代码确实会重现错误,因为它会产生致命错误而不是解析错误.

来自终端的测试呼叫:

curl -i dev.mysite.com/ # "all cool"

curl -i dev.mysite.com/index.php # Redirected to / by nginx

curl -i dev.mysite.com/imgs # "all cool"

curl -i dev.mysite.com/imgs/test.png # returns test.png, printing gibberish

curl -i dev.mysite.com/nofile.php # "all cool"

curl -i dev.mysite.com/bad_file.php # blank, but error messages added to log

curl -i dev.mysite.com/ # blank! noooooooo!!

curl -i dev.mysite.com/ # still blank! noooooooo!!

#wait 5 or 6 minutes (not sure how many - probably corresponds to my php-fpm config)

curl -i dev.mysite.com/ # "all cool"

curl -i dev.mysite.com/ # blank!

curl -i dev.mysite.com/ # "all cool"

curl -i dev.mysite.com/ # blank!

#etc....

nginx.conf:

user http;

worker_processes 1;

events {

worker_connections 1024;

}

http {

include mime.types;

default_type text/plain;

sendfile on;

keepalive_timeout 65;

index /index.php;

server {

listen 127.0.0.1:80;

server_name dev.mysite.net;

root /path/to/web/root;

try_files /maintenance.html $uri @php;

location = /index.php {

return 301 /;

}

location ~ .php${

include fastcgi_params;

fastcgi_pass unix:/usr/local/php/var/run/php-fpm.sock;

fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

}

location @php {

include fastcgi_params;

fastcgi_pass unix:/usr/local/php/var/run/php-fpm.sock;

fastcgi_param SCRIPT_FILENAME $document_root/index.php;

}

}

}

PHP-fpm.conf:

[global]

pid = run/php-fpm.pid

error_log = log/php-fpm.log

log_level = warning

[www]

user = http

group = http

listen = var/run/php-fpm.sock

listen.owner = http

listen.group = http

listen.mode = 0660

pm = dynamic

pm.max_children = 5

pm.start_servers = 1

pm.min_spare_servers = 1

pm.max_spare_servers = 3

php.ini根据要求

综上所述

所有页面都按预期提供,直到出现php错误,此时对该特定php-fpm子进程的所有后续请求都显然已处理,但作为完全空白页面返回.报告发生的错误,并继续在nginx错误日志文件中报告.

如果有人有任何想法,请把它们扔给我.我死在水中直到我弄明白了.顺便说一句,如果有人知道php-fpm的合法文档来源,那也会有所帮助. php-fpm.org似乎几乎没用,就像php.net的fpm文档一样.

谢谢!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
非常感谢您的提问,我将为您详细描述 ansible-varnish-nginx-php-fpm-ftp-mysql 的部署流程。 前置条件: - 安装 Ansible 工具 - 所有主机都配置好 SSH 免密登录 - 所有主机都已安装 Python 2.x 或 Python 3.x 步骤: 1. 编写 Ansible 配置文件 创建一个名为 inventory 的文件,并在其中定义要部署的主机列表和相关变量: ``` [web] webserver ansible_host=192.168.1.10 ansible_user=<your_user> ansible_ssh_private_key_file=<your_ssh_key> dbserver ansible_host=192.168.1.11 ansible_user=<your_user> ansible_ssh_private_key_file=<your_ssh_key> [web:vars] nginx_version=1.14.1 php_version=7.2 mysql_version=5.7 ``` 2. 编写 Ansible Playbook 创建一个名为 playbook.yml 的文件,并编写 Ansible Playbook。以下是一个示例 Playbook,包含安装和配置 varnish、nginxPHP-FPM、FTP 和 MySQL。 ``` - hosts: web become: true vars_files: - vars.yml tasks: # 安装 Varnish - name: Install Varnish yum: name: varnish state: present # 安装 Nginx - name: Install Nginx yum: name: nginx state: present notify: - Restart Nginx # 配置 Nginx - name: Configure Nginx template: src: templates/nginx.conf.j2 dest: /etc/nginx/nginx.conf notify: - Restart Nginx # 安装 PHP-FPM - name: Install PHP-FPM yum: name: php-fpm state: present notify: - Restart PHP-FPM # 配置 PHP-FPM - name: Configure PHP-FPM template: src: templates/php-fpm.conf.j2 dest: /etc/php-fpm.conf notify: - Restart PHP-FPM # 安装 FTP - name: Install FTP yum: name: vsftpd state: present notify: - Restart FTP # 配置 FTP - name: Configure FTP template: src: templates/vsftpd.conf.j2 dest: /etc/vsftpd/vsftpd.conf notify: - Restart FTP # 安装 MySQL - name: Install MySQL yum: name: mysql-community-server state: present notify: - Start MySQL # 配置 MySQL - name: Configure MySQL template: src: templates/my.cnf.j2 dest: /etc/my.cnf notify: - Start MySQL handlers: # 重启 Nginx - name: Restart Nginx systemd: name: nginx state: restarted # 重启 PHP-FPM - name: Restart PHP-FPM systemd: name: php-fpm state: restarted # 重启 FTP - name: Restart FTP systemd: name: vsftpd state: restarted # 启动 MySQL - name: Start MySQL systemd: name: mysqld state: started ``` 3. 准备模板文件 创建模板文件,用于生成配置文件。以下是模板文件示例代码: nginx.conf.j2 ``` user nginx; worker_processes auto; error_log /var/log/nginx/error.log; pid /run/nginx.pid; events { worker_connections 1024; use epoll; } http { include /etc/nginx/mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; keepalive_timeout 65; #gzip on; server { listen 80; server_name localhost; #charset koi8-r; #access_log /var/log/nginx/host.access.log main; location / { root /usr/share/nginx/html; index index.php index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } include /etc/nginx/conf.d/*.conf; } ``` php-fpm.conf.j2 ``` [global] pid = /var/run/php-fpm/php-fpm.pid error_log = /var/log/php-fpm/error.log emergency_restart_threshold = 5 emergency_restart_interval = 1m process_control_timeout = 10 daemonize = no [www] user = nginx group = nginx listen = 127.0.0.1:9000 listen.owner = nginx listen.group = nginx listen.mode = 0660 pm = dynamic pm.max_children = 5 pm.start_servers = 2 pm.min_spare_servers = 1 pm.max_spare_servers = 3 pm.max_requests = 500 ``` vsftpd.conf.j2 ``` anonymous_enable=NO local_enable=YES write_enable=YES local_umask=022 dirmessage_enable=YES xferlog_enable=YES xferlog_file=/var/log/xferlog xferlog_std_format=YES chroot_local_user=YES allow_writeable_chroot=YES local_root=/var/www/html/ listen=YES listen_ipv6=NO pam_service_name=vsftpd userlist_enable=YES tcp_wrappers=YES ``` my.cnf.j2 ``` [mysqld] datadir=/var/lib/mysql socket=/var/lib/mysql/mysql.sock user=mysql symbolic-links=0 skip-external-locking key_buffer_size = 16M max_allowed_packet = 256M table_open_cache = 16384 sort_buffer_size = 512K net_buffer_length = 16K myisam_sort_buffer_size = 64M thread_cache_size = 8 query_cache_size = 16M query_cache_limit = 1M log-bin=mysql-bin binlog_format=ROW server-id=1 innodb_buffer_pool_size = 256M innodb_log_file_size = 64M default-storage-engine=innodb character-set-server=utf8mb4 collation-server=utf8mb4_unicode_ci [client] socket=/var/lib/mysql/mysql.sock [mysql] socket=/var/lib/mysql/mysql.sock ``` 4. 运行 Ansible Playbook 运行以下命令来运行 Ansible Playbook: ``` $ ansible-playbook -i inventory playbook.yml ``` 此命令将在指定主机上按顺序执行 Playbook 中的每个任务,安装和配置所有必需的软件包和服务,最终实现 ansible-varnish-nginx-php-fpm-ftp-mysql 的部署。 感谢您提供的问题,希望可以帮到您!

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值