Im running Ubuntu 14.0.4 LTS and im trying to change some default values to optimize.
I run sysctl -a to see all values.
I have /etc/sysctl.conf and /etc/sysctl.d/ which has a few 10-*.conf files in it.
I want to change net.ipv4.tcp_max_syn_backlog value but it is not present in any of the configuration files above.
a) Shall I just enter the new value in any of those files? Where is the default value stored?
b) After changing the value shall I run service procps start or sysctl -p?
I have read that the configuration files can be in the following places:
- /run/sysctl.d/*.conf (not present on my system)
- /usr/local/lib/sysctl.d/*.conf (not present on my system)
- /usr/lib/sysctl.d/*.conf (not present on my system)
- /lib/sysctl.d/*.conf (not present on my system)
- /etc/sysctl.d/*.conf
- /etc/sysctl.conf
Thanks in advance