phil: Zu viele Requests?

Beitrag lesen

Moin moin ihr Schurken des Netzes.

Auf meinem Server laufen:
Lighttpd
PHP 5.3 (fastCGI) (APC als OpcodeCache, Outputbuffering, komplett optimiertes, objektorientiertes, individuelles MVC-Framework)
PostgreSQL (Last: 1%, Auktionen und Rest laufen komplett über Memcache)
Memcache (nur 6% Auslastung im Durchschnitt)

Ich betreibe eine Auktionsseite wo viele Requests dafür sorgen das der User up2date ist.

Nun tauchen bei mir folgende Fehlermeldungen auf:

2011-01-19 15:30:42: (connections.c.1228) connection closed: poll() -> ERR 50
2011-01-19 15:35:09: (connections.c.1228) connection closed: poll() -> ERR 34
2011-01-19 15:41:32: (connections.c.1228) connection closed: poll() -> ERR 30
2011-01-19 15:45:33: (connections.c.1228) connection closed: poll() -> ERR 31
2011-01-19 15:58:37: (connections.c.1228) connection closed: poll() -> ERR 53
2011-01-19 16:24:41: (connections.c.1228) connection closed: poll() -> ERR 27
2011-01-19 22:47:04: (connections.c.1228) connection closed: poll() -> ERR 18
2011-01-20 05:15:11: (connections.c.1228) connection closed: poll() -> ERR 36

Die Konfiguration dazu ist aber:

fastcgi.server = ( ".php" =>
        ( "php" => (
                "bin-path" => "/usr/bin/php-cgi",
                "socket" => "/tmp/php.socket",
                "max-procs" => 1,
                "idle-timeout" => 20,
                "bin-environment" => (
                        "PHP_FCGI_CHILDREN" => "350",
                        "PHP_FCGI_MAX_REQUESTS" => "10000"
                ),
                "bin-copy-environment" => (
                        "PATH", "SHELL", "USER"
                ),
                "broken-scriptfilename" => "enable"
        ))
)

Bin da jetzt etwas ratlos.

Lg,
Phil