linux 리눅스 tail: inotify cannot be used, reverting to polling: Too many open files 해결 방법


linux 리눅스 tail: inotify cannot be used, reverting to polling: Too many open files 해결 방법

watches 설정 수정 [root@yon ~]# sysctl fs.inotify.max_user_watches 1024 [root@yon ~]# vi /etc/sysctl.conf fs.inotify.max_user_watches = 1048576 [root@yon ~]# sysctl -p fs.inotify.max_user_watches = 1048576 [root@yon ~]# sysctl fs.inotify.max_user_watches 1048576 losf 처리 [lsof] 는 List Open Files 의 약자로 시스템에서 열려있는 파일에 대한 정보를 출력해주는 명령어 [root@yon]# lsof -c tail |grep log tail 419 tomcat_was 3r REG 253,2 ..


원문링크 : linux 리눅스 tail: inotify cannot be used, reverting to polling: Too many open files 해결 방법