Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- Stock
- 공모주 청약 일정
- php
- MYSQL
- 공모주 청약
- 오라클
- css
- 맥
- 공모주
- jquery
- SQL
- 자바스크립트
- java
- 주식 청약 일정
- Eclipse
- JavaScript
- codeigniter
- 리눅스
- IPO
- html
- Oracle
- 주식 청약
- 제이쿼리
- 7월 공모주 청약 일정
- 주식
- 코드이그나이터
- 6월 공모주 청약 일정
- Stock ipo
- linux
- 자바
Archives
- Today
- Total
개발자의 끄적끄적
[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:00728x90
반응형
[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
참고들 하세요!
반응형
'개발 > linux' 카테고리의 다른 글
[linux/centos] linux remove node module example / 리눅스 node 모듈 제거 방법 (0) | 2022.01.23 |
---|---|
[linux] linux npm background example / 리눅스 npm 백그라운드에서 실행하는 방법 (0) | 2022.01.22 |
[linux] linux npm Error: spawn chrome ENOENT 에러 해결 방법 (0) | 2022.01.20 |
[linux] linux date format example / 리눅스 date 날짜 형식 (0) | 2022.01.19 |
[linux] linux npm pm2 example / 리눅스 pm2 설치 방법 [링크] (0) | 2022.01.15 |
Comments