/tmp is 100% but inode is only 1%. this is due to some process are tied with the deleted file. issue lsof +aL1 /tmp and kill the process to freed the FS.
[server tmp]# df -h /tmp
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/VolGroup00-LogVol05
2.0G 1.9G 0 100% /tmp
[server tmp]# df -i /tmp
Filesystem Inodes IUsed IFree IUse% Mounted on
/dev/mapper/VolGroup00-LogVol05
262144 23 262121 1% /tmp
[server tmp]# lsof +aL1 /tmp
COMMAND PID USER FD TYPE DEVICE SIZE NLINK NODE NAME
java 18871 platpra1 169w REG 253,3 1967697920 0 212996 /tmp/DataEngine_26214400/BirtDataTemp12839026526150/session_12839026526350/goalFile (deleted)
[server tmp]# kill -9 18871
[server tmp]# df -h /tmp
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/VolGroup00-LogVol05
2.0G 36M 1.9G 2% /tmp
for proper cleanup, please fuser the directory before deleting any of it.
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment