einige PHP Threads mit hoher CPU Last

mickymouse

New Member
Hallo,

einige der PHP Instanzen laufen komischerweise mit einer sehr hohen CPU-Last. Meine Seite läd ziemlich schnell. Aber diese paar php-prozesse laufen trotzdem ohne Pause.

Mir ist aufgefallen dass diese Instanzen bei STAT "S" oder "R" stehen haben, andere mit "Ss" laufen besser. Wodran kann das liegen, bzw. wie kann ich rausfinden welches phpscript da ausgeführt wird? Und wieso haben sie so eine lange Laufzeit(teilweise über 30 sekunden).

Code:
USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
lighttpd  5318  0.8  0.4   7412  4560 ?        S    19:34   0:47 /usr/sbin/lighttpd -f /etc/lighttpd/lighttpd.conf
lighttpd 17575  0.0  0.3   9664  3164 ?        Ss   20:49   0:00 /usr/local/bin/php
lighttpd 17577  0.0  0.3   9668  3168 ?        Ss   20:49   0:00 /usr/local/bin/php
lighttpd 17581  0.0  0.3   9664  3164 ?        Ss   20:49   0:00 /usr/local/bin/php
lighttpd 17582  0.0  0.3   9668  3164 ?        Ss   20:49   0:00 /usr/local/bin/php
lighttpd 19402  5.6  1.0  16108 10708 ?        R    20:59   0:18 /usr/local/bin/php
lighttpd 19542 11.9  0.8  13784  8536 ?        S    21:00   0:34 /usr/local/bin/php
lighttpd 19876  9.5  0.4  10396  5060 ?        S    21:02   0:16 /usr/local/bin/php
lighttpd 20257  6.3  1.1  18120 12288 ?        S    21:04   0:02 /usr/local/bin/php

Zur info: Mein System läuft mit Suse 10.0 ,lighttpd und einem selbst kompiliertem PHP, welches als fcgi läuft.

Php habe ich mit den folgenden Optionen konfiguriert:
Code:
'./configure' '--enable-force-cgi-redirect' '--enable-fastcgi' '--enable-bcmath' '--enable-gd-native-ttf' '--enable-versioning' '--with-mod-charset' '--with-zlib-dir' '--with-zlib' '--with-bz2' '--with-jpeg-dir' '--with-gd' '--with-png-dir' '--with-jpeg' '--with-jpeg-dir' '--with-gmp' '--with-mysql' '--with-qtdom' '--with-zip' '--enable-track-vars'

Ich hoffe mir kann jemand helfen.
Danke
 
Back
Top