Difference between revisions of "Kernel Parameters Tuning"
Jump to navigation
Jump to search
imported>Jeremy-busk (Created page with " Simple look and replace from command line ``` sysctl -a | grep fs.inotify.max_user_instances sysctl fs.inotify.max_user_instances=256 # updates to 256 ``` # Possible change...") |
(No difference)
|
Latest revision as of 02:34, 7 February 2019
Simple look and replace from command line
sysctl -a | grep fs.inotify.max_user_instances sysctl fs.inotify.max_user_instances=256 # updates to 256
Possible changes for larger instances.
If You See This
Failed to allocate directory watch: Too many open files
vim /etc/sysctl.conf
fs.inotify.max_user_instances=256 # (default 128) increase to whatever you need
sysctl -p /etc/sysctl.conf