Tuning the Server: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(Raise ulimit) |
||
Line 1: | Line 1: | ||
==== Increase ulimit ==== | ==== Increase ulimit ==== | ||
ulimit -n | ulimit -n 65535 | ||
==== Increase the ports available ==== | ==== Increase the ports available ==== |
Revision as of 17:20, 5 December 2021
Increase ulimit
ulimit -n 65535
Increase the ports available
sysctl -w net.ipv4.ip_local_port_range="9000 65500"
And add this line to /etc/sysctl.conf
net.ipv4.ip_local_port_range=9000 65500
Increase max connections
sysctl -w net.core.somaxconn=324000
And add this line to /etc/sysctl.conf
net.core.somaxconn=324000