To see how many connections you have in your pound, use this:
netstat -an | grep :80 | awk '{print $5}' | cut -f1 -d":" | sort | uniq -c |
sort -n
or logging - but this logs open ports, not connections:
#!/bin/sh
date>>/zope/zstatus_`date +%Y%m%d-%H`h.log
while true; do
netstat -an | grep :__webserver_port_number_here__ |grep -v 0.0.0.0| awk
'{print $5}' | cut -f1 -d":" | sort | uniq -c | sort -n |awk '{print $1}'
>>/zope/zstatus_`date +%Y%m%d-%H`h.log
sleep 10
done
----- Original Message -----
From: "Emilio Campos" <[email protected]>
I configured pound 2.3.2 and i see that my pound only have 1 child whith
more than 200 conections
ps -ef | grep pound
pound 7846 1 0 12:20 ? 00:00:00
/opt/pound-2.3.2/sbin/pound
-f /opt/pound-2.3.2/etc/pound.conf -p /opt/pound-2.3.2/var/pound.pid
pound 7847 7846 0 12:20 ? 00:00:00
/opt/pound-2.3.2/sbin/pound
-f /opt/pound-2.3.2/etc/pound.conf -p /opt/pound-2.3.2/var/pound.pid
root 8036 2891 0 12:21 pts/0 00:00:00 grep pound
this is with 300 client about.
The client see the webs that pound send is very slow, i am reading in
google and i can see that pound send a lot of trheads but i can not see
this
in my configuration, i am reading the pound man i don´t see any param
where
i can put the number of process.
Can you see me why in my pound the number of threads is one? i don´t
explaint it
--
To unsubscribe send an email with subject unsubscribe to [email protected].
Please contact [email protected] for questions.