Php5-fpm Crash se muitos visitantes

8

Decidi mudar meu OP para Nginx do Litespeed porque li muito sobre o baixo recurso que o Nginx custaria.

Estou executando um site Wordpress com 500 usuários on-line

Ok, obrigado pessoal por tanta ajuda :) Eu editei algumas coisas.

Também tenho algumas perguntas:

Eu tenho que remover o; antes da pm. definições? Eu o removi O que a configuração conta? Eu tenho dois cgi rápidos, um no / etc / php5 / fpm chamado php-fpm.conf e um no /etc/php5/fpm/pool.d chamado www.conf?

Tentei a nova configuração durante a noite e quando acordo já tenho uma página em branco. Topo:

top - 13:55:27 up 1 day, 19:28,  2 users,  load average: 0.18, 0.36, 0.19
Tasks:  84 total,   1 running,  83 sleeping,   0 stopped,   0 zombie
Cpu(s):  0.2%us,  0.0%sy,  0.0%ni, 99.8%id,  0.0%wa,  0.0%hi,  0.0%si,  0.0%st
Mem:   3974264k total,  1051360k used,  2922904k free,   162380k buffers
Swap:  3998700k total,        0k used,  3998700k free,   609220k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  COMMAND
 1857 www-data  20   0  193m  55m  22m S    0  1.4   0:04.67 php5-fpm
    1 root      20   0  8356  808  680 S    0  0.0   0:01.37 init
    2 root      20   0     0    0    0 S    0  0.0   0:00.00 kthreadd

Acho que o uso da CPU agora está mais baixo, mas isso não está corrigindo a falha ...

Minhas configurações agora são: php-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
; If it's set to "syslog", log is sent to syslogd instead of being written
; in a local file.
; Note: the default prefix is /var
; Default Value: log/php-fpm.log
error_log = /var/log/php5-fpm.log

; syslog_facility is used to specify what type of program is logging the
; message. This lets syslogd specify that messages from different facilities
; will be handled differently.
; See syslog(3) for possible values (ex daemon equiv LOG_DAEMON)
; Default Value: daemon
;syslog.facility = daemon

; syslog_ident is prepended to every message. If you have multiple FPM
; instances running on the same server, you can change the default value
; which must suit common needs.
; Default Value: php-fpm
;syslog.ident = php-fpm

; 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 = 1

; 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 = 1s

; 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 = 10s

; The maximum number of processes FPM will fork. This has been design to control
; the global number of processes when using dynamic PM within a lot of pools.
; Use it with caution.
; Note: A value of 0 indicates no limit
; Default Value: 0
process.max = 150

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

; Set open file descriptor rlimit for the master process.
; Default Value: system defined value
rlimit_files = 1024

; Set max core size rlimit for the master process.
; Possible Values: 'unlimited' or an integer greater or equal to 0
; Default Value: system defined value
;rlimit_core = 0

; Specify the event mechanism FPM will use. The following is available:
; - select     (any POSIX os)
; - poll       (any POSIX os)
; - epoll      (linux >= 2.5.44)
; - kqueue     (FreeBSD >= 4.1, OpenBSD >= 2.9, NetBSD >= 2.0)
; - /dev/poll  (Solaris >= 7)
; - port       (Solaris >= 10)
; Default Value: not set (auto detection)
; events.mechanism = epoll

;;;;;;;;;;;;;;;;;;;;
; 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

request_terminate_timeout = 30s

pm.max_children = 25

; The number of child processes created on startup.
; Note: Used only when pm is set to 'dynamic'
; Default Value: min_spare_servers + (max_spare_servers - min_spare_servers) / 2
pm.start_servers = 5

; The desired minimum number of idle server processes.
; Note: Used only when pm is set to 'dynamic'
; Note: Mandatory when pm is set to 'dynamic'
pm.min_spare_servers = 2

; The desired maximum number of idle server processes.
; Note: Used only when pm is set to 'dynamic'
; Note: Mandatory when pm is set to 'dynamic'
pm.max_spare_servers = 5

; The number of seconds after which an idle process will be killed.
; Note: Used only when pm is set to 'ondemand'
; Default Value: 10s
pm.process_idle_timeout = 10s;

fastcgi_params:

fastcgi_param   QUERY_STRING        $query_string;
fastcgi_param   REQUEST_METHOD      $request_method;
fastcgi_param   CONTENT_TYPE        $content_type;
fastcgi_param   CONTENT_LENGTH      $content_length;

fastcgi_param   SCRIPT_FILENAME     $request_filename;
fastcgi_param   SCRIPT_NAME     $fastcgi_script_name;
fastcgi_param   REQUEST_URI     $request_uri;
fastcgi_param   DOCUMENT_URI        $document_uri;
fastcgi_param   DOCUMENT_ROOT       $document_root;
fastcgi_param   SERVER_PROTOCOL     $server_protocol;

fastcgi_param   GATEWAY_INTERFACE   CGI/1.1;
fastcgi_param   SERVER_SOFTWARE     nginx/$nginx_version;

fastcgi_param   REMOTE_ADDR     $remote_addr;
fastcgi_param   REMOTE_PORT     $remote_port;
fastcgi_param   SERVER_ADDR     $server_addr;
fastcgi_param   SERVER_PORT     $server_port;
fastcgi_param   SERVER_NAME     $server_name;

#fastcgi_param  HTTPS           $https;

# PHP only, required if PHP was built with --enable-force-cgi-redirect
fastcgi_param   REDIRECT_STATUS     200;

fastcgi_connect_timeout 60;
fastcgi_send_timeout 180;
fastcgi_read_timeout 180;
fastcgi_buffer_size 128k;
fastcgi_buffers 4 256k;
fastcgi_busy_buffers_size 256k;
fastcgi_temp_file_write_size 256k;
fastcgi_intercept_errors on;

configuração nginx:

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

events {
    worker_connections 500;
    # multi_accept on;
}

http {

    ##
    # Basic Settings
    ##

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 40;
    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 9;
 gzip_buffers 16 8k;
 gzip_http_version 1.1;
 gzip_types text/plain text/css application/json application/x-javascript text/$

www.conf

; Start a new pool named 'www'.
; the variable $pool can we used in any directive and will be replaced by the
; pool name ('www' here)
[www]

user = www-data
group = www-data


pm = dynamic

pm.max_children = 25

pm.start_servers = 5

pm.min_spare_servers = 2

pm.max_spare_servers = 5

pm.process_idle_timeout = 10s;

pm.max_requests = 100

request_terminate_timeout = 120s

The Mashine: Dualcore de 4 GB de RAM

chillah
fonte
O que o log de erros do PHP-FPM diz?
Devicenull 3/04
Existe apenas o registro de quando eu reinicio o fpm de algum outro ... [04-Apr-2012 13:46:44] AVISO: Terminando ... [04-Apr-2012 13:46:44] AVISO: saindo, tchau -tchau! [04-Abr-2012 13:46:44] AVISO: o fpm está em execução, pid 1744 [04-Abr-2012 13:46:44] AVISO: pronto para lidar com conexões [04-Abr-2012 13:48:57] AVISO: [pool www] child 1748 saiu com o código 0 após 132.647614 segundos desde o início [04-Apr-2012 13:48:57] AVISO: [pool www] child 1829 iniciado
chillah 04/04/12
Acabei de notar que o php fpm falha mais rápido se eu desativar / ativar ou editar meus arquivos do wordpress. Mas im não 100% de certeza ...
chillah
Você ainda está recebendo as falhas? Você verificou o uso de APC? Normalmente, você define um pool em um arquivo de configuração separado (para onde vão todas as suas configurações de pm).
Dada
Sim, ele ainda trava. As falhas parecem aumentar com mais visitantes na minha página. Eu não vejo o processo apc em "top". Como posso verificá-lo? Eu usei o cron para reiniciar o php fpm a cada 2 minutos por enquanto .... Eu realmente preciso corrigir esse problema em breve!
chillah

Respostas:

10

Não está claro se você está usando qualquer código de código semelhante APC. Antes de tudo, ative-o. Ajuste sua memória para evitar fragmentação. Além disso, use o soquete, não a conexão http de nginxpara php5-fpm, e coloque esse soquete /dev/shm. No nginx, use fastcgi_pass unix:/dev/shm/php5-fpm.sock;e altere a configuração do php5-fpm de acordo.

Tente diminuir pm.max_childrenpara algo mais realista como 30-40-50-60 e veja a carga e libere memória com free -m. Veja se os clientes estão recebendo algum erro 502/504. Lower pm.start_servers, min e max_spare de acordo (15, 5, 25).

Se houver um grande número de usuários anônimos, considere usar qualquer plugin caching para wordpress como WP-FFPC, WP Super Cacheou similar.

Desative o gzipping se você o tiver ativado no nginx.

Talvez você precise ajustar fastcgi_buffer_sizee fastcgi_buffersopções no nginx.

Verifique se o cache de consultas está ativado e é suficiente no Mysql.

Tenha um sistema de monitoramento como munininstalado no site para verificar o consumo de carga / memória / latência, etc.

dada
fonte
A conexão entre nginx e php5-fpm pode não ser HTTP, mas apenas TCP. JFYI.
Aykut Çevik
4

É provável que o seu servidor sofra quando ele ficar sem memória para executar processos php. Suas configurações de php5-fpm parecem ser muito generosas para 4 GB de RAM. Eu tive muitos problemas para chegar às configurações ideais de php5-fpm (para 32GB de RAM e + 1K de usuários on-line, aqui estão meus parâmetros relevantes:

pm.max_children = 25
pm.start_servers = 5
pm.min_spare_servers = 2 
pm.max_spare_servers = 5
pm.max_requests = 100

Além disso, não se esqueça de definir um tempo limite de encerramento de solicitação para evitar falta de memória devido a processos inativos:

request_terminate_timeout = 120s

Qualquer tempo limite que você usar na diretiva acima deve estar de acordo com a diretiva max_execution_time no seu php.ini.

Quanto ao nginx, ter o gzip ativado é uma idéia muito boa: é muito barato em termos de CPU e economiza muita largura de banda para o servidor.

   #sendfile on;
    #tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 10;
    types_hash_max_size 2048;
    # server_tokens off;
    gzip on;
    gzip_disable "msie6";

    gzip_vary on;
    gzip_proxied any;
    gzip_comp_level 9;
    gzip_buffers 16 8k;
    gzip_http_version 1.1;
    gzip_types text/plain text/css application/json application/x-javascript text/$

Boa sorte

alfish
fonte
Eu tentei sua configuração durante a noite, a CPU parece que o uso parece estar mais baixo agora, porém, que não corrigiu as páginas em branco e as falhas. Heres a Ip counter Image: abload.de/img/unbenanntsgyxi.png
chillah
Concordo com a recomendação de definir request_terminate_timeout, mas seu motivo não está correto;) Esta diretiva é finalizar um processo em execução após um certo tempo de CPU, como uma salvaguarda quando o PHP max_execution_timenão poderia (o que deve ter um valor um pouco menor para obter o primeira chance) [fonte ]. "Para evitar falta de memória devido a processos inativos", a diretiva a ser usada é pm.process_idle_timeout = 40 [consulte esta resposta ].
31515 tanius
1

Eu sugeriria usar pm = ondemand, e verifique se o tamanho do memory_limit no php é dimensionável para a memória da máquina.

Para uma máquina de 4 GB com processo de 128 MB em PHP que seria de aproximadamente 24 servidores PHP-FPM que você pode executar, ondemand é bom, pois o servidor determina a quantidade máxima de servidores e cria novos conforme a carga aumenta.

OMG-1
fonte
1
Concorde que o gerenciador de processos ondemand do PHP-FPM é a melhor escolha na maioria dos casos. Mas é max. o número de processos filhos não pode ser calculado assim: memory_limité o máximo absoluto que um processo PHP pode consumir antes de terminar com força. Em média, eles consomem muito menos.
tanius
1
E de qualquer maneira , a memória geralmente não é o fator limitante para o max. filhos, em vez núcleos de CPU. Máx. a contagem de crianças deve ser ajustada para aprox. Contagem de núcleos de CPU, mais alguns para compensar as esperas de E / S etc.
tanius