반응형
1. 오류 메시지
java.io.IOException: User limit of inotify instances reached or too many open files
2. 오류 발생 원인
"java.io.IOException: User limit of inotify instances reached or too many open files" 오류 메시지는 일반적으로 시스템이 동시에 모니터링할 수 있는 Inotify 인스턴스 또는 열린 파일 수에 대한 한도에 도달했음을 나타냅니다.
3. 해결 방안
inotify 파라미터 값 수정
$ vi /etc/sysctl.conf
fs.inotify.max_user_instances = 256 ### default 128 ###
$ sysctl -p
$ sysctl -a | grep fs.inotify.max
반응형
'JAVA' 카테고리의 다른 글
[JAVA] HTTPS 통신시 Java Cacerts 파일에 인증서 목록이 없어 SSLHandshakeException 발생 (0) | 2024.02.18 |
---|---|
[JAVA] HTTP 통신간 지원하는 기본 TLS 버전 (0) | 2024.02.05 |
[JAVA] Find the jar file where the class file is used (0) | 2023.12.20 |
[JAVA] JAR, WAR, EAR 정리 (0) | 2023.08.14 |
[JAVA] JAR(JAVA Archive) 정리 (0) | 2023.06.26 |