Last active
June 3, 2017 17:42
-
-
Save tokoiwesley/1fea9ba24b7430a29ac4f1cd21ff1200 to your computer and use it in GitHub Desktop.
Increasing inotify watches limit on Ubuntu 16.04 after inotify resources are exhausted - limit is reached
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Add the following line to /etc/sysctl.conf file | |
| # fs.inotify.max_user_watches = 524288 | |
| # | |
| # Then run this command to apply the change: | |
| # sudo sysctl -p --system | |
| # | |
| fs.inotify.max_user_watches = 524288 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment