79

配置

  • Ubuntu 服务器 11.10 64 位
  • Amazon AWS,Ec2,托管在云上
  • t1.micro 实例

在我写其他东西之前,我想声明我已经检查了nginx 502 bad gatewayNginx + PHP-FPM 502 Bad Gateway线程,不幸的是在这方面没有帮助我。

这个问题似乎很常见:nginx 或 php-fpm 的错误配置可能会导致502 Bad Gateway错误,这是我无法摆脱的。请注意,即使我转到我的域 root 时也会出现这种情况,而没有指定任何特定目录。

我正在运行一个 Amazon EC2 网络服务器,启用了端口 9000,打开了端口 80 等。

特别是问题是,我怎样才能摆脱这个讨厌的错误?或者,更好的是,我怎样才能php5-fpm真正开始工作

到目前为止我所做的尝试

主要是对配置文件进行一致的编辑,尤其是php-fpm.confnginx.conf.

一世。 php-fpm.conf

我添加了以下内容,但并没有太大帮助:

;;;;;;;;;;;;;
; Fpm Start ;
;;;;;;;;;;;;;

;pm.start_servers = 20
;pm.min_spare_servers = 5
;pm.max_spare_servers = 35

现在,之后我尝试包含我的配置文件:

include=/etc/php5/fpm/*.conf

这只会让我更进一步。

完整配置

;;;;;;;;;;;;;;;;;;;;;
; FPM Configuration ;
;;;;;;;;;;;;;;;;;;;;;

; All relative paths in this configuration file are relative to PHP's install
; prefix (/usr). This prefix can be dynamicaly changed by using the
; '-p' argument from the command line.

; Include one or more files. If glob(3) exists, it is used to include a bunch of
; files from a glob(3) pattern. This directive can be used everywhere in the
; file.
; Relative path can also be used. They will be prefixed by:
;  - the global prefix if it's been set (-p arguement)
;  - /usr otherwise
;include=/etc/php5/fpm/*.conf

;;;;;;;;;;;;;;;;;;
; Global Options ;
;;;;;;;;;;;;;;;;;;

[global]
; Pid file
; Note: the default prefix is /var
; Default Value: none
pid = /var/run/php5-fpm.pid

; Error log file
; Note: the default prefix is /var
; Default Value: log/php-fpm.log
error_log = /var/log/php5-fpm.log

; Log level
; Possible Values: alert, error, warning, notice, debug
; Default Value: notice
log_level = notice

; If this number of child processes exit with SIGSEGV or SIGBUS within the time
; interval set by emergency_restart_interval then FPM will restart. A value
; of '0' means 'Off'.
; Default Value: 0
;emergency_restart_threshold = 0

; Interval of time used by emergency_restart_interval to determine when 
; a graceful restart will be initiated.  This can be useful to work around
; accidental corruptions in an accelerator's shared memory.
; Available Units: s(econds), m(inutes), h(ours), or d(ays)
; Default Unit: seconds
; Default Value: 0
emergency_restart_interval = 0

; Time limit for child processes to wait for a reaction on signals from master.
; Available units: s(econds), m(inutes), h(ours), or d(ays)
; Default Unit: seconds
; Default Value: 0
;process_control_timeout = 0

; Send FPM to background. Set to 'no' to keep FPM in foreground for debugging.
; Default Value: yes
daemonize = no

;;;;;;;;;;;;;
; Fpm Start ;
;;;;;;;;;;;;;

;pm.start_servers = 20
;pm.min_spare_servers = 5
;pm.max_spare_servers = 35

;;;;;;;;;;;;;;;;;;;;
; Pool Definitions ; 
;;;;;;;;;;;;;;;;;;;;

; Multiple pools of child processes may be started with different listening
; ports and different management options.  The name of the pool will be
; used in logs and stats. There is no limitation on the number of pools which
; FPM can handle. Your system will tell you anyway :)

; To configure the pools it is recommended to have one .conf file per
; pool in the following directory:
include=/etc/php5/fpm/pool.d/*.conf

nginx.conf

老实说,这个配置只是我访问过的几个网站的一小部分,但我可以告诉你,在这个 502 Bad Gateway 业务之前,服务器运行良好(没有 PHP 工作。期间。)。

问题主要在于某些事情是非常非常错误的。而现在,当我尝试做 a 时service php5-fpm restart,它会挂在我猜是无限循环或其他东西中,我什CTRL至无法C摆脱它。

完整配置

user www-data;
worker_processes 1;
pid /var/run/nginx.pid;

events {
    worker_connections 64;
    # multi_accept on;
}

http {

    ##
    # Basic Settings
    ##

    sendfile on;
    tcp_nopush off;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;
    # server_tokens off;

    # server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    ##
    # Logging Settings
    ##

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    ##
    # Gzip Settings
    ##

    gzip on;
    gzip_disable "msie6";

    # gzip_vary on;
    # gzip_proxied any;
    # gzip_comp_level 6;
    # gzip_buffers 16 8k;
    # gzip_http_version 1.1;
    # gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;

    ##
    # Virtual Host Configs
    ##

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;

    server {
        listen 80;
        server_name ec2-xx-xx-xx-xx.compute-x.amazonaws.com;

        location ~ ^(.+\.php)(.*)$ {
            root   /home/wayvac/public;
            fastcgi_pass   unix:/var/run/php5-fpm.pid;  
            #fastcgi_pass   127.0.0.1:9000; #Un-comment this and comment "fastcgi_pass   unix:/var/run/php-fpm/php-fpm.sock;" if you are not using php-fpm.
            fastcgi_index  index.php;
            set $document_root2 $document_root;
            if ($document_root2 ~ "^(.*\\\\).*?[\\\\|\/]\.\.\/(.*)$") { set $document_root2 $1$2; }
            if ($document_root2 ~ "^(.*\\\\).*?[\\\\|\/]\.\.\/(.*)$") { set $document_root2 $1$2; }
            if ($document_root2 ~ "^(.*\\\\).*?[\\\\|\/]\.\.\/(.*)$") { set $document_root2 $1$2; }
            if ($document_root2 ~ "^(.*\\\\).*?[\\\\|\/]\.\.\/(.*)$") { set $document_root2 $1$2; }
            if ($document_root2 ~ "^(.*\\\\).*?[\\\\|\/]\.\.\/(.*)$") { set $document_root2 $1$2; }
            fastcgi_split_path_info ^(.+\.php)(.*)$;
            fastcgi_param   SCRIPT_FILENAME $document_root2$fastcgi_script_name;
            fastcgi_param   PATH_INFO   $fastcgi_path_info;
            fastcgi_param   PATH_TRANSLATED $document_root2$fastcgi_path_info;
            include fastcgi_params;
            fastcgi_param  DOCUMENT_ROOT      $document_root2;
        }       

        access_log /var/log/nginx/access.log;
        error_log /var/log/nginx/error.log;

        location / {
            root /home/wayvac/public;   
            index index.html index.htm index.php;
        }

        location ~* \.(?:ico|css|js|gif|jpe?g|png)$ {
            # Some basic cache-control for static files to be sent to the browser
            expires max;
            add_header Pragma public;
            add_header Cache-Control "public, must-revalidate, proxy-revalidate";
        }

        #include drop.conf;
        #include php.conf;
    }
}
4

15 回答 15

151

如果有人通过遇到与我相同的问题找到此页面,我在这里找到了答案。

对于那些懒得点击并自己解决的人... ;)

条件:

带有 NGINX 和 PHP 5.3 的 Ubuntu 或 Debian 服务器工作正常,但将 PHP 升级到 5.4 会出现 502 Bad Gateway 错误。寻找在端口 9000 上运行的服务(通常是运行的netstat -lp或类似的)不会返回任何结果。

修复:

打开/etc/php5/fpm/pool.d/www.conf并记下“listen”参数(在我的例子中/var/run/php5-fpm.sock):

; The address on which to accept FastCGI requests.
; Valid syntaxes are:
;   'ip.add.re.ss:port'    - to listen on a TCP socket to a specific address on
;                            a specific port;
;   'port'                 - to listen on a TCP socket to all addresses on a
;                            specific port;
;   '/path/to/unix/socket' - to listen on a unix socket.
; Note: This value is mandatory.
listen = /var/run/php5-fpm.sock

并将您的 vhost 中的 fastcgi_pass 变量替换为您刚刚记下的位置。

所以这个示例 symfony2 配置(取自这里):

  # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  location ~ ^/(app|app_dev)\.php(/|$) {
    fastcgi_pass   127.0.0.1:9000;
    fastcgi_split_path_info ^(.+\.php)(/.*)$;
    include fastcgi_params;
    fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
    fastcgi_param  HTTPS              off;
  }

变成这样:

  # pass the PHP scripts to FastCGI server at /var/run/php5-fpm.sock
  location ~ ^/(app|app_dev)\.php(/|$) {
    fastcgi_pass unix:/var/run/php5-fpm.sock;
    fastcgi_split_path_info ^(.+\.php)(/.*)$;
    include fastcgi_params;
    fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
    fastcgi_param  HTTPS              off;
  }

然后重启nginx:

sudo /etc/init.d/nginx restart

注意:如果您不在 SF2 上,请替换~ ^/(app|app_dev)\.php(/|$) {为**~ ^/index\.php(/|$) {

希望这可以节省一些时间:)

编辑

当然,您可以将其更改listen = /var/run/php5-fpm.socklisten = 127.0.0.1:9000in/etc/php5/fpm/pool.d/www.conf然后重新启动 php5-fpm(这将使您不必更改虚拟主机),但您必须假设他们更改了 php5-fpm 以通过套接字运行,而不是在端口 9000 上监听原因。

编辑2

如果您仍然遇到 502 错误,请参阅此答案

于 2013-01-28T10:40:06.817 回答
28

尝试设置这些值,它解决了 fast-cgi 中的问题

fastcgi_buffer_size 16k;
fastcgi_buffers 4 16k;
于 2012-05-22T06:51:19.013 回答
11

我做了所有这些类似的调整,但有时我会收到 501/502 错误(每天)。

这是我在/etc/php5/fpm/pool.d/www.conf上的设置,以避免 501 和 502 nginx 错误……服务器有 16Gb RAM。此配置适用于 8Gb RAM 服务器,因此...</p>

sudo nano /etc/php5/fpm/pool.d/www.conf

然后设置以下值

pm.max_children = 70
pm.start_servers = 20
pm.min_spare_servers = 20
pm.max_spare_servers = 35
pm.max_requests = 500

在此更改后重新启动 php-fpm

sudo service php-fpm restart
于 2015-12-22T00:58:46.780 回答
4

如果你像我一样在升级 php-fpm 后遇到问题,试试这个:打开 /etc/php5/fpm/pool.d/www.conf 取消注释以下行:

listen.owner = www-data
listen.group = www-data
listen.mode = 0666

然后重新启动 php-fpm。

于 2015-01-30T05:25:07.893 回答
3

别忘了这php-fpm是一项服务。安装后,确保启动它:

# service php-fpm start
# chkconfig php-fpm on
于 2014-06-11T06:45:17.613 回答
2

对于其他努力追根究底的人,我尝试按照建议调整超时,因为我不想停止使用 Unix 套接字……经过大量故障排除并且没有太多工作要做后,我发现这个问题是由通过几个月前我在 php-fpm 中启用的 APC 扩展。禁用此扩展解决了间歇性 502 错误,最简单的方法是注释掉以下行:

;extension = apc.so

这对我有用!

于 2015-06-23T18:40:52.943 回答
1

该端口在 5.4 中更改为 9001,只是在 nginx conf 和 php-fpm 配置中将端口从 9000 更改为 9001 对我有用。

于 2013-08-04T07:07:25.127 回答
1

希望这个技巧能挽救别人的生命。就我而言,问题是我的内存不足,但只是轻微地,很难考虑。浪费了3个小时。我建议运行:

sudo htop

或者

sudo free -m

...以及在服务器上运行有问题的请求以查看您的内存是否没有用完。如果在我的情况下确实如此,您需要创建交换文件(除非您已经有一个)。

我已按照本教程在 Ubuntu Server 14.04 上创建交换文件,它工作得很好: http ://www.cyberciti.biz/faq/ubuntu-linux-create-add-swap-file/

于 2015-02-12T15:37:07.620 回答
1

您应该会看到错误日志。默认情况下,它的位置在 /var/log/nginx/error.log

就我而言,502 之所以成功,是因为:

GET /app_dev.php HTTP/1.1", upstream: "fastcgi://unix:/run/php/php7.0-fpm.sock:", host: "symfony2.local"
2016/05/25 11:57:28 [error] 22889#22889: *3 upstream sent too big header while reading response header from upstream, client: 127.0.0.1, server: symfony2.local, request: "GET /app_dev.php HTTP/1.1", upstream: "fastcgi://unix:/run/php/php7.0-fpm.sock:", host: "symfony2.local"
2016/05/25 11:57:29 [error] 22889#22889: *3 upstream sent too big header while reading response header from upstream, client: 127.0.0.1, server: symfony2.local, request: "GET /app_dev.php HTTP/1.1", upstream: "fastcgi://unix:/run/php/php7.0-fpm.sock:", host: "symfony2.local"
2016/05/25 11:57:29 [error] 22889#22889: *3 upstream sent too big header while reading response header from upstream, client: 127.0.0.1, server: symfony2.local, request: "GET /app_dev.php HTTP/1.1", upstream: "fastcgi://unix:/run/php/php7.0-fpm.sock:", host: "symfony2.local"

当我们确切地知道出了什么问题时,然后修复它。对于这些错误,只需修改缓冲区:

fastcgi_buffers 16 512k; 
fastcgi_buffer_size 512k;
于 2016-05-25T05:04:37.960 回答
0

我还发现将 json_encoded() 数据写入 MySQL 时可能会导致此错误。为了解决这个问题,我使用 base64_encode() JSON。请注意,在解码时,JSON 编码会改变值。NB。24 可以变成 24.00

于 2015-11-09T22:53:50.757 回答
0

好吧,在尝试了网络上的所有解决方案之后,我最终用非常简单的方法解决了这个问题,首先我检查了 php-fpm err log

cat /var/log/php5-fpm.log 

最重复的错误是

" WARNING: [pool www] server reached pm.max_children setting (5), consider raising it "

我编辑 PHP-fpm 池设置

nano /etc/php5/fpm/pool.d/www.conf

I chenged 这条线

pm.max_children = 5

新价值

pm.max_children = 10

顺便说一句,我使用的是 128MB ram 的低端 VPS,因为我认为 redusing 的其他人pm.max_children会让我的服务器运行得更快,消耗更少的内存,但是我们使用的设置太低,甚至无法启动 PHP-fpm 进程。我希望这对其他人有所帮助,因为我在 24 小时测试和失败后发现了这一点,我的虚拟主机支持无法解决这个问题。

于 2016-04-29T15:39:50.153 回答
0

我玩这个游戏已经很晚了,但是当我在服务器上升级 php 时,我的问题就开始了。我能够删除 .socket 文件并重新启动我的服务。然后,一切正常。不知道为什么会有所不同,因为文件大小为 0 并且所有权和权限相同,但它有效。

于 2017-05-28T15:44:28.360 回答
0

在弄乱 Nginx 配置之前,请先尝试禁用 ChromePHP。

1 - 打开 app/config/config_dev.yml

2 - 评论这些行:

chromephp:
    type:   chromephp
    level:  info

ChromePHP 将调试信息 json-encoded 打包在 X-ChromePhp-Data 标头中,这对于带有 fastcgi 的 nginx 的默认配置来说太大了。

于 2017-08-17T14:33:29.077 回答
0

在您的 NGINX vhost 文件中,在location ~ \.php$ {通过 FastCGI 处理您的 PHP 文件(通常是 )的 location 块中,确保您有下一行:

proxy_buffer_size          128k;
proxy_buffers              4 256k;
proxy_busy_buffers_size    256k;
fastcgi_buffer_size        16k;
fastcgi_buffers            4 16k;

之后不要忘记重新启动 fpm 和 nginx。


额外的:

NGINX 虚拟主机路径

  • /etc/nginx/sites-enabled/- Linux
  • '/usr/local/etc/nginx/sites-enabled/' - Mac

重启 NGINX:

  • sudo service nginx restart- Linux
  • brew service restart nginx- 苹果电脑

重启 FPM:

确定fpm进程名:systemctl list-unit-files | grep fpm--Linux brew services list | grep php--Mac

然后使用以下命令重新启动它:

  • sudo service <service-name> restart- Linux
  • brew services restart <service-name>- 苹果电脑
于 2018-05-23T17:32:46.833 回答
0

也许这个答案会有所帮助:

nginx error connect to php5-fpm.sock failed (13: Permission denied)

解决方案是用 /var/www/php/fpm/pool.d/www.conf 中的 nginx 替换 www-data

并分别修改socket凭证:

$ sudo chmod nginx:nginx /var/run/php/php7.2-fpm.sock
于 2020-01-12T01:37:35.407 回答