Mam problem ze zwiększeniem ilości dostępnych połączeń w Apache2, otóż robię tak jak dokumentacja pisze:
http://httpd.apache.org/docs/2.0/mod/mp ... erverlimit
i Moja konfiguracja pliku /etc/apache2/apache2.conf wygląda tak:
Kod: Zaznacz cały
(...)
<IfModule mpm_worker_module>
StartServers 100
MaxClients 2048
MinSpareThreads 100
MaxSpareThreads 200
ThreadsPerChild 64
ServerLimit 32
MaxRequestsPerChild 0
</IfModule>
(...)
Kod: Zaznacz cały
# /etc/init.d/apache2 restart
Restarting web server: apache2WARNING: MaxClients of 2048 would require 32 servers,
and would exceed the ServerLimit value of 16.
Automatically lowering MaxClients to 1024. To increase,
please see the ServerLimit directive.
... waiting ..WARNING: MaxClients of 2048 would require 32 servers,
and would exceed the ServerLimit value of 16.
Automatically lowering MaxClients to 1024. To increase,
please see the ServerLimit directive.
.
Wersja apache:
Kod: Zaznacz cały
# apache2 -v
Server version: Apache/2.2.9 (Debian)
Server built: Jul 14 2009 20:40:18
Tak - potrzebuje tyle połączeń i maszyna wyrobi z tym (to odpowiedzi na przyszłość).
aloha