hello people. i have one big problem that cant fix with myself. searched google but nothing found...
so time to time(not usualy the same time or same interval) i'm getting about 300 connection from 127.0.0.1 and apache hangs till i restart it...
i use this command to count connections per ip.
may it be ddos attack? if so, how it may be connections from localhost?
that's my apache2 config. any idea?
system:
WHM 11.34.1 (build 5)
Centos 6.3
Apache/2.2.23
server: 2X xeon x5570 Ram: 24GB
so time to time(not usualy the same time or same interval) i'm getting about 300 connection from 127.0.0.1 and apache hangs till i restart it...
i use this command to count connections per ip.
Code:
netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n
that's my apache2 config. any idea?
Code:
Timeout 30
TraceEnable Off
ServerSignature Off
ServerTokens ProductOnly
FileETag None
StartServers 10
<IfModule prefork.c>
MinSpareServers 5
MaxSpareServers 30
</IfModule>
ServerLimit 600
MaxClients 600
MaxRequestsPerChild 0
KeepAlive Off
KeepAliveTimeout 2
MaxKeepAliveRequests 100
system:
WHM 11.34.1 (build 5)
Centos 6.3
Apache/2.2.23
server: 2X xeon x5570 Ram: 24GB
Last edited: