[V1] [Solved] Linux, ENOSPC error
-
Hi all, I’ve run into the following error a couple of times and thought I’d share a solution in-case anyone else has experienced this issue.
Error message:
events.js:173 throw er; // Unhandled 'error' event ^ Error: ENOSPC: System limit for number of file watchers reached, watch '/home/<user-name>/vue-apps/twitter/quasar.conf.js'
Solution:
From the command line run the following
$ echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
$ sudo sysctl --system
Alternatively a reboot will fix the issue
For more information please see:
-
Thank You. Its Worked for me