设置系统内核参数
Which file?
/etc/sysctl.conf
Whitch params?
To show system params can be modified through command:
sysctl -a
Settings take effect
to enable the settings immediately by execute command:
sudo service procps start
I got this command by reading /etc/sysctl.d/README
Notes:
- to increase max fd numbers holded by kernel need to add this line in
/etc/sysctl.conf
:
fs.file-max = 999999
To be continue…