Hi,
I am using 11.1-RELEASE-p11, with standard email services (postfix, dovecot, nginx).
It seems that I am experiencing very poor performance (especially with IMAP).
This is the errors I get:
This is
So, it seems I have too many connection on port 993/TCP, am I wrong?
I added this line on sysctl.conf:
kern.ipc.somaxconn=4096
Why is
Thank you
I am using 11.1-RELEASE-p11, with standard email services (postfix, dovecot, nginx).
It seems that I am experiencing very poor performance (especially with IMAP).
This is the errors I get:
Code:
sonewconn: pcb 0xfffff8024e42e570: Listen queue overflow: 151 already in queue awaiting acceptance (225 occurrences)
sonewconn: pcb 0xfffff8024e42e570: Listen queue overflow: 151 already in queue awaiting acceptance (3 occurrences)
sonewconn: pcb 0xfffff8024e42e570: Listen queue overflow: 151 already in queue awaiting acceptance (44 occurrences)
sonewconn: pcb 0xfffff8024e42e570: Listen queue overflow: 151 already in queue awaiting acceptance (94 occurrences)
sonewconn: pcb 0xfffff8024e42e570: Listen queue overflow: 151 already in queue awaiting acceptance (153 occurrences)
sonewconn: pcb 0xfffff8024e42e570: Listen queue overflow: 151 already in queue awaiting acceptance (36 occurrences)
sonewconn: pcb 0xfffff8024e42e570: Listen queue overflow: 151 already in queue awaiting acceptance (110 occurrences)
sonewconn: pcb 0xfffff8024e42e570: Listen queue overflow: 151 already in queue awaiting acceptance (47 occurrences)
sonewconn: pcb 0xfffff8024e42e570: Listen queue overflow: 151 already in queue awaiting acceptance (85 occurrences)
sonewconn: pcb 0xfffff8024e42e570: Listen queue overflow: 151 already in queue awaiting acceptance (121 occurrences)
This is
netstat -Lan
output:
Code:
# netstat -Lan
Current listen queue sizes (qlen/incqlen/maxqlen)
Proto Listen Local Address
tcp4 0/0/100 *.25
tcp6 0/0/100 *.993
tcp4 123/0/100 *.993
tcp6 0/0/100 *.143
tcp4 18/0/100 *.143
tcp6 0/0/100 *.995
tcp4 0/0/100 *.995
tcp6 0/0/100 *.110
tcp4 0/0/100 *.110
tcp4 0/0/4096 *.443
tcp6 0/0/4096 *.80
tcp4 0/0/4096 *.80
tcp4 0/0/128 *.22
tcp6 0/0/128 *.22
tcp4 0/0/4096 127.0.0.1.8891
tcp4 0/0/5 *.873
tcp6 0/0/5 *.873
tcp4 0/0/128 *.199
So, it seems I have too many connection on port 993/TCP, am I wrong?
I added this line on sysctl.conf:
kern.ipc.somaxconn=4096
Code:
kern.ipc.somaxconn=4096
Why is
netstat
showing 100 and not 4096?Thank you