Maximum parallel connections for ubuntu?

I would like to ask, how many concurrent connections can ubuntu handle? i heard that xp is no more than 10 connections .. i will use it as OS for my small server and will use mysql on it.

+2


a source to share


1 answer


You are probably making all tcp connections from one process and hitting the default limit on the number of open files for each process. You can confirm this limit with 'ulimit -a' or 'ulimit -n' on the command line. You can increase this limit with "ulimit -n" or setrlimit () as root, or by editing /etc/security/limits.conf.

Also see ...



Increasing the maximum number of tcp / ip connections in Linux
Is there a limit on the number of tcp / ip connections between machines on linux?

+5


a source







All Articles