728x90

어플리케이션에서 파일 open한 상태에서 파일 삭제가 이뤄질 때 문제가 발생 가능합니다.

-> OS 레벨에서는 해당 프로세스를 종료하면 해결됩니다.

ex) cron에 주기적으로 오래된 로그파일을 삭제하는 로직이 도는 경우에 저런 현상이 발생하기도 한다.

 


#df -h

명령어에서 볼 때는 사용량이 많은데

 

#du -sh *

명령어에서 볼 때는 사용량이 적다.

 

->

#lsof /postgres | grep -i delete

를 통해 나오는 프로세스에 해당하는 어플리케이션을 재시작

<OR> 프로세스 Kill

<OR> 시스템 재기동

 

등을 통해 조치가 가능합니다.

 

 

 

The df and du commands provide different system information and I can not write to a partition that df says is 100% full. Which is correct and why does the system not allow any data writes to this partition? - Red Hat Customer Portal

 

The df and du commands provide different system information and I can not write to a partition that df says is 100% full. Which

Unable to find which files are consuming disk space. Why is there a mismatch between df and du outputs? The df and du commands provide different information and I can not write to a partition that df says is 100% full. Which is correct and why does the sys

access.redhat.com

 

728x90

+ Recent posts