Wie schauen eure Apache2 server-tuning.conf's aus?

conym18

Member
Hallo zusammen,

Ich will mal einen Sammel-Thread eröffnen, wo jeder so seine (vorerst) Apache2 server-tuning.conf's einstellen kann.


Warum?
Soll es erleichtern, seine eigene Configuration ggf. anhand bestehender Lösungen/Erfahrungen anzupassen.

Da es jedoch immer auf den Server und die Auslastung ankommt, zusätzlich noch ein paar weitere Eckdaten:


Ich stelle mir das so vor:


Server-Provider:
Resv. RAM:
Akt. FreeRAM:
CPU Average:
Anzahl Domains:
Anzahl Zugriffe/Tag:
Prozesse:
Sonstiges:
Auszug server-tuning.conf:
Probleme:



Ich fange einfach mal an:

Code:
Server-Provider: vServer von S4Y
Resv. RAM: 512 MB
Akt. FreeRAM: ca. 440 MB
CPU Average: 0.20
Anzahl Domains: 10, davon 4 aktiv Besuchte
Anzahl Zugriffe/Tag: 242 eindeutige
Prozesse: apache2, mysql, qmail
Sonstiges: normaler Webserver mit php Seiten und Email per PHP verschicken; teste grad mit MySQL und Apache Tuning
Auszug server-tuning.conf:
<IfModule prefork.c>
        # number of server processes to start = 1
        # http://httpd.apache.org/docs/2.2/mod/mpm_common.html#startservers
        StartServers            1
        # minimum number of server processes which are kept spare = 1
        # http://httpd.apache.org/docs/2.2/mod/prefork.html#minspareservers
        MinSpareServers         1
        # maximum number of server processes which are kept spare = 5
        # http://httpd.apache.org/docs/2.2/mod/prefork.html#maxspareservers
        MaxSpareServers         5
        # highest possible MaxClients setting for the lifetime of the Apache process. = 10
        # http://httpd.apache.org/docs/2.2/mod/mpm_common.html#serverlimit
        ServerLimit            20
        # maximum number of server processes allowed to start = 10
        # http://httpd.apache.org/docs/2.2/mod/mpm_common.html#maxclients
        MaxClients             20
        # maximum number of requests a server process serves = 250 - 1000
        # http://httpd.apache.org/docs/2.2/mod/mpm_common.html#maxrequestsperchild
        MaxRequestsPerChild   5000
</IfModule>
 
Back
Top