Maximum open sll connections on Windows
Posted
by scooterman
on Stack Overflow
See other posts from Stack Overflow
or by scooterman
Published on 2010-03-08T18:46:35Z
Indexed on
2010/03/08
18:51 UTC
Read the original article
Hit count: 200
version: erlang R13B
Hi all,
how can I increase the amount of ssl ports/handles that my network server is able to create on Windows? On linux I was able to successful create about 1000 connections using:
-env ERL_MAX_PORTS 80000 -P 268435456
and changing the maximum open fd's using ulimit.
On windows apparently there is no effect using the same configuration, and sadly the number of open connections are VERY small (about 30, and it opens 6 handles for each one). I've noticed that the shell starts two other children processes, inet_gethost.exe and ssl_esock.exe. If these are the ones that I have to increase the port count, how do I do that?
Thanks,
© Stack Overflow or respective owner