Last active
December 4, 2025 20:41
-
-
Save jesugmz/306d3b61eb2f0043e026cf3a28968650 to your computer and use it in GitHub Desktop.
Avoid the message 'External file changes sync may be slow: The current inotify(7) watch limit is too low.' from JetBrains products
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
| # | |
| # Avoid the message 'External file changes sync may be slow: The current inotify(7) watch limit is too low.' from JetBrains products. | |
| # | |
| # 1. Create the file /etc/sysctl.d/60-jetbrains.conf and paste this code | |
| # 2. Restart the sysctl service: sudo sysctl -p --system | |
| # 3. Restart the IDE | |
| # | |
| # More info: | |
| # https://youtrack.jetbrains.com/articles/SUPPORT-A-1715/Inotify-Watches-Limit-Linux | |
| # recommended quantity | |
| fs.inotify.max_user_watches = 1048576 |
link https://confluence.jetbrains.com/display/IDEADEV/Inotify+Watches+Limit has expired
it seems it was moved here https://youtrack.jetbrains.com/articles/SUPPORT-A-1715/Inotify-Watches-Limit-Linux
Also, next recomentation is increasing max_user_instances to 256.
Link from ide describing it - https://youtrack.jetbrains.com/articles/SUPPORT-A-1714/Inotify-Instances-Limit-Linux
Author
Thanks for the update @YarikTH ! just updated the script.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It helped, rather than official documentation.
Using Phpstorm 2018.1, Ubuntu 16.04