본문 바로가기
web

Error: Unable to monitor directories for changes because iNotify max watches exceeded. See https://github.com/guard/listen/blob/master/README.md#increasing-the-amount-of-inotify-watchers .

by seohan1010 2026. 2. 1.

1. jekyll 프로젝트를 bundle 명령어로 실행하던중 에러 발생 

#/etc/sysctl.d/ 에 설정을 추가
sudo sh -c "echo fs.inotify.max_user_watches=524288 >> /etc/sysctl.conf"

sudo sysctl -p #설정 적용 

#프로젝트 실행
bundle exec jekyll serve

#설정 파일을 지정하여 실행 
bundle exec jekyll server --config _config_dev.yml




https://github.com/guard/listen/blob/master/README.md#increasing-the-amount-of-inotify-watchers

 

listen/README.md at master · guard/listen

The Listen gem listens to file modifications and notifies you about the changes. - guard/listen

github.com