개발자의 끄적끄적

[linux] npm Error: ENOSPC: System limit for number of file watchers reached 에러 해결 방법 본문

개발/linux

[linux] npm Error: ENOSPC: System limit for number of file watchers reached 에러 해결 방법

효벨 2022. 1. 21. 01:00
728x90
반응형

[linux] npm Error: ENOSPC: System limit for number of file watchers reached 에러 해결 방법

 

 

linux 에서

 

npm 을 이용하여

 

프로젝트를 구동하다 보면

 

아래와 같은 에러가 나는 경우가 있습니다!

 

Error: ENOSPC: System limit for number of file watchers reached

 

그럴때는 아래 명령어로

 

최대치를 확인한 후에

 

cat /proc/sys/fs/inotify/max_user_watches

 

아래 나와있는 명령어를 입력하여

 

최대치를 증가시켜주면 됩니다!

 

echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p

 

참고들 하세요!

반응형
Comments