Php5-fpm訪問者が多いとクラッシュする


8

Nginxにかかる低リソースについて詳しく読んだので、OPをLitespeedからNginxに変更することにしました。

500人のユーザーがオンラインでWordpressサイトを運営しています

たくさんの助けをしてくれてGuysに感謝します:)私はいくつかのことを編集しました。

私もいくつか質問があります:

を削除する必要がありますか?午後の前に。設定?私はそれを削除しましたどのような構成が重要ですか?/ etc / php5 / fpmにphp-fpm.confと呼ばれる2つの高速cgiと、www.confと呼ばれる/etc/php5/fpm/pool.dに1つあります。

私は一晩新しい設定を試しました、そして目覚めたとき、私はすでに空白のページを得ました。上:

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

CPUの使用率は低くなったと思いますが、それはクラッシュを修正していません...

私の設定は今: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;

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 4GB RAM


PHP-FPMエラーログは何と言っていますか?
devicenull 2012

他のfpmをいつ再起動するかに関するレコードのみがあります... [04-Apr-2012 13:46:44]通知:終了しています... [04-Apr-2012 13:46:44]通知:終了しますさようなら![04-Apr-2012 13:46:44]通知:fpmが実行中、pid 1744 [04-Apr-2012 13:46:44]通知:接続を処理する準備ができています[04-Apr-2012 13:48:57]通知:[プールwww]子1748は開始から132.647614秒後にコード0で終了しました[04-Apr-2012 13:48:57]通知:[プールwww]子1829が開始されました
チラー

ワードプレスファイルを無効/有効にしたり編集したりすると、php fpmがより速くクラッシュすることに気づきました。しかし、100%確実ではない...
チラー

まだクラッシュしていますか?の使い方を確認しましたAPCか?通常、プールは別の構成ファイルで定義します(すべてのpm設定が配置される場所)。
ダダ

はい、まだクラッシュします。クラッシュは私のページの訪問者が増えると増加するようです。「トップ」にapcの問題が表示されません。どうすれば確認できますか?今のところ、cronを使用してphp fpmを2分ごとに再起動します。本当にその問題をすぐに修正する必要があります。
チラー

回答:


10

のようなopcode cacherを使用しているかどうかは明確ではありませんAPC。まず、それを有効にします。メモリを調整して断片化を回避します。また、からnginxへのhttp接続ではなくソケットを使用しphp5-fpm、そのソケットをに配置します/dev/shm。nginxでは、を使用しfastcgi_pass unix:/dev/shm/php5-fpm.sock;、それに応じてphp5-fpmの設定を変更します。

下げるようにしてくださいpm.max_children30-40-50-60ような、より現実的なものにしてと負荷と空きメモリを参照してくださいfree -m。クライアントが502/504エラーを受け取っているかどうかを確認します。低いpm.start_servers、したがって分およびmax_spare(15、5、25)。

匿名ユーザーの多くがある場合は、ワードプレスなどのための任意のキャッシュプラグインを使用することを検討WP-FFPCWP Super Cacheまたは類似。

nginxで有効になっている場合は、gzipを無効にします。

おそらく、nginx fastcgi_buffer_sizefastcgi_buffersオプションとオプションを調整する必要があります。

Mysqlでクエリキャッシュが有効になっていて十分かどうかを確認します。

munin負荷/メモリ消費/レイテンシなどを確認するために、サイトにインストールされているような監視システムを持っている。


nginxとphp5-fpmの間の接続は、HTTPではなくTCPである可能性があります。JFYI。
AykutÇevik2015年

4

phpプロセスを実行するためにメモリが不足すると、サーバーが影響を受ける可能性があります。あなたのphp5-fpm設定は4GB RAMに対して寛大すぎるようです。最適なphp5-fpm構成にたどり着くまでにいじくり回しました(32GB ramおよび+ 1Kオンラインユーザーの場合、関連するパラメーターは次のとおりです:

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

また、アイドルプロセスによるメモリ不足を回避するために、リクエスト終了タイムアウトを設定することを忘れないでください。

request_terminate_timeout = 120s

上記のディレクトリで使用するタイムアウトは、php.iniのmax_execution_timeディレクティブに従っている必要があります。

nginxに関しては、gzipをオンにすることは非常に良いアイデアです。CPUの点で非常に安価であり、サーバーの帯域幅の負荷を節約します。

   #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/$

幸運を


私はあなたの設定を一晩試しました、CPUは使用率が低くなっているようですが、空白ページとクラッシュを修正しませんでした。Heresの
chillah

私は設定の推奨に同意しrequest_terminate_timeoutますが、あなたの理由は正しくありません;)このディレクティブは、一定のCPU時間後に実行中のプロセスを強制終了max_execution_timeするためのものです。最初のチャンス)[ソース ]。「アイドルプロセスによるメモリ不足を回避するには」、使用するディレクティブはpm.process_idle_timeout = 40 [この回答を参照 ]です。
tanius 2015年

1

私はpm = ondemandを使用することをお勧めします。phpのmemory_limitのサイズがマシンのメモリに対してかなり大きいことを確認してください。

PHPプロセスで128 MBの4 GBマシンで、実行可能な約24のPHP-FPMサーバーの場合、サーバーが最大数のサーバーを決定し、負荷が増加すると新しいサーバーを作成するため、オンデマンドが適切です。


1
ほとんどの場合、PHP-FPMオンデマンドプロセスマネージャーがより良い選択であることに同意します。しかし、その最大。子プロセスの数は次のように計算できません:memory_limit強制終了する前にPHPプロセスが消費できる絶対最大値です。平均して、彼らははるかに少ない消費します。
tanius 2015年

1
とにかく、メモリは通常最大の制限要因ではありません。子供、むしろCPUコア。マックス。子供の数は約に設定する必要があります。CPUコア数、およびIO待機などを補正するための数個。さらに、CPU負荷が100%を超えて高速化するものはありません。それは、キューで待機することと、切り替えによる低速の並列処理との違いにすぎません。
tanius 2015年
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.