[Error]System limit for number of file watchers reached

마데슾 : My Dev Space·2020년 5월 3일
0

ERROR

목록 보기
3/4

에러가 난 이유

  • Linux에서 기본적으로 inotify를 사용하여 디렉토리 변경 사항을 모니터하는데 모니터링 할 수있는 파일 수에 대한 시스템 제한이 발생하는 것이라고 한다.
  • Ubuntu Lucid (64 비트) inotify 한도는 8192로 설정되어 있다.

해결방법

$ cat /proc/sys/fs/inotify/max_user_watches => inotify 확인

<임시로 늘리는 방법>
$ sudo sysctl fs.inotify.max_user_watches=524288
$ sudo sysctl -p

<영구적으로 늘리는 방법>
$ echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf
$ sudo sysctl -p

참고블로그

https://github.com/guard/listen/wiki/Increasing-the-amount-of-inotify-watchers#the-technical-details

profile
👩🏻‍💻 🚀

0개의 댓글