Yondata
728x90
반응형
[리눅스] 파일에서 특정 내용찾기 로그찾기 에러찾기 grep
서버 2024. 5. 22. 13:48

로그파일명 : testfile.log , testfile0401.log, testfile0510.log testfile0530.log찾고 싶은 내용 : error 500  testfile.log 에서 error 500 내용 찾기grep -r 'error 500' testfile.log testfile0510.log, testfile0530.log에서 error 500 내용 찾기grep -r 'error 500' testfile05* 전체 로그파일에서 찾기grep -r 'error 500' testfile*

linux 리눅스 tail: inotify cannot be used, reverting to polling: Too many open files 해결 방법
서버 2023. 8. 18. 10:30

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 ..

article thumbnail
[리눅스]리눅스 하드디스크 용량 사용량 남은용량
서버 2023. 4. 4. 13:22

리눅스 명령어#하드 용량df -h#총 하드디스크 용량 합산df -P | grep -v ^Filesystem | awk '{sum += $2} END { print sum/1024/1024 " GB" }'#사용중인 하드디스크 용량 합산df -P | grep -v ^Filesystem | awk '{sum += $3} END { print sum/1024/1024 " GB" }'#남은 하드디스크 용량 합산df -P | grep -v ^Filesystem | awk '{sum += $4} END { print sum/1024/1024 " GB" }' df 명령어df 명령어는 리눅스 시스템 전체 디스크 사용량을 확인할수있다.-h : 보기좋게 용량단위(K,M,G)로 확인 위에 용량계산 하는 내용은awk로$2 si..

728x90
반응형