I made some changes to sysctl.conf but now need to run sysctl -p on each boot. I can always create an init script to have it run automatically on boot, but I was wondering if there was an Ubuntu / Debian way of doing it.
3 Answers
There is a better and more ellegant way:
create your configuration file on /etc/sysctl.d/ directory.
For example, if you changing kernel parameters due to database requirements, create a file:
/etc/sysctl.d/60-mysql.conf
and add your own parameters inside it. To execute it:
service procps restart
Just to note:
procps is a system file and it should NEVER be edited.
/etc/sysctl.conf should not be edited either because it can be changed on a system/kernel upgrade and if it's differente from expected, upgrade will be halted asking if newer version can replace current one.
Reference: http://manpages.ubuntu.com/manpages/precise/man8/sysctl.8.html
- 1,259
- 1
- 16
- 25
You add your desired sysctls into /etc/sysctl.conf and they will be applied at boot time. However, if you have updated /etc/sysctl.conf and what to apply it immediately, run:
sudo sysctl --system
- 19,448
On Ubuntu the Upstart job procps (/etc/init/procps.conf) already does that for you.
- 89,643