No space left on device" while fileystem has lots of free space . Sometime it happens due to inode header is full. Unix keep tack of file details in the inode header. incase if too many files under a file-system or folder may cause the inode header to become full.
-- df shows it has 61% free space
df -h .
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/rootvg-u01
9.8G 5.6G 3.7G 61% /u01
-- df -I shows it has 100% full.
df -i .
Filesystem Inodes IUsed IFree IUse% Mounted on
/dev/mapper/rootvg-u01
655360 655360 0 100% /u01
use the below command to find out the folder with huge files
find /u01 -xdev -printf '%h\n' | sort | uniq -c | sort -k 1 -n
we may need to either house keep or move it to different folder the unwanted files to make the inode header free
Dear Friends, The content in this blog are purely based on my own opinion ,it is not reflecting any of my current or previous employers materials or official documents. All my posts here are not warranted to be free of errors. Please use at your own risk and after thorough testing in your environment. If you feel that i am violating any of the company's policies or documents, kindly mail me at jeyaseelan.hi@gmail.com,I am happy to take out those content from this blog.
Subscribe to:
Post Comments (Atom)
-
We may not be able to disable the logtransport when the database is in maximum availabilty mode. We may get the below error DGMGRL...
-
Error Messages: We may get the following error messages while doing ASM operations ORA-15137: The ASM cluster is in rolling patch state....
-
MIRA - Multi Instance Redo Apply - 12cR2 onwards/18C With Oracle 12c Release 2, We can enable Multi Instance Redo apply ( MIR...
No comments:
Post a Comment