https://access.redhat.com/solutions/2316
SOLUTION 已验证 - 已更新 2019年三月19日01:05 -
环境
- Red Hat Enterprise Linux (all versions)
问题
- Why is space not being freed from disk after deleting a file in Red Hat Enterprise Linux?
- When deleting a large file or files, the file is deleted successfully but the size of the filesystem does not reflect the change.
- I've deleted some files but the amount of free space on the filesystem has not changed.
-
The OS was holding several very large log files open with some as large as ~30G. The file was previously deleted, but only stopping and restarting the jvm/java process released the disk space. The
lsofcommand shows the following output before restarting the java processCOMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME : java 49097 awdmw 77w REG 253,6 33955068440 1283397 /opt/jboss/jboss-eap-5/jboss-as/server/all/log/server.log (deleted) -
When you perform a df, the storage shows 90+% utilized, however, there is not really that much written to that space.
决议
Graceful shutdown of relevant process
-
First obtain a list of deleted files which are still held open by applications
$ /usr/sbin/lsof | grep deleted ora 25575 data 33u REG 65,65 4294983680 31014933 /oradata/DATAPRE/file.dbf (deleted) -
From
lsofoutput, we find the process with pid25575has kept file/oradata/DATAPRE/file.dbfopen with file descriptor (fd) number33 -
After a file has been identified you can free space occupied by this file by shutting down the process in question. If a graceful shutdown does not work, then you may issue the kill command to forcefully stop it by referencing the PID.
Truncate File Size
-
Alternatively, it is possible to force the system to de-allocate the space consumed by an in-use file by forcing the system to truncate the file via the
procfile system. This is an advanced technique and should only be carried out when the administrator is certain that this will cause no adverse effects to running processes. Applications may not be designed to deal elegantly with this situation and may produce inconsistent or undefined behavior when files that are in use are abruptly truncated in this manner.$ echo > /proc/pid/fd/fd_number -
For example, from the
lsofoutput above$ file /proc/25575/fd/33 /proc/25575/fd/33: broken symbolic link to `/oradata/DATAPRE/file.dbf (deleted)' $ echo > /proc/25575/fd/33
NOTE:
- The same reason will cause different disk usage from du command and df command, please refer to Why does df show bigger disk usage than du?
- If you want to know the size (in blocks) these files are occupying you can use a command like:
# lsof -Fn -Fs |grep -B1 -i deleted | grep ^s | cut -c 2- | awk '{s+=$1} END {print s}'
根源
- On Linux or Unix systems, deleting a file via
rmor through a file manager application will unlink the file from the file system's directory structure; however, if the file is still open (in use by a running process) it will still be accessible to this process and will continue to occupy space on disk. Therefore such processes may need to be restarted before that file's space will be cleared up on the filesystem.
诊断步骤
Log Reaper will allow you to visualize and quickly narrow down the lsof data to exactly the subset you want to see

本文介绍在Red Hat Enterprise Linux中,当删除文件后,由于进程仍持有文件打开状态,导致磁盘空间未被释放的问题。提供了解决方案,包括优雅关闭相关进程和通过proc文件系统强制截断文件大小。
7045

被折叠的 条评论
为什么被折叠?



