- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- No space left on device
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2010 10:37 PM
05-15-2010 10:37 PM
No space left on device
We are getting â No space left on device(28)â error during "Grid control Agent" software installation in one of our Linux Server under
"/u01" mount point.
From "df -h /u01" command output i have found
only "14%" space is in use & from "df -i /u01" command output i have found "80%" inode has already in use.
So what is the cause of using 80% inode as only 14% space used & how can i increase inode number of "/u01" mount point(/dev/vglmdb_app/lv_u01)
I have attached "df" & "vgdisplay" command output with this mail. Please help me to resolve this problem.
Thanks
Minhaz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2010 01:55 AM
05-16-2010 01:55 AM
Re: No space left on device
On HP-UX, hfs filesystems have a fixed number of inodes and if you have lots of small files you'll run into this limit.
But vxfs filesystems are unlimited.
>how can I increase inode number
I assume you'll have to recreate the filesystem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2010 02:31 AM
05-16-2010 02:31 AM
Re: No space left on device
# df -TH /u01
Filesystem Type Size Used Avail Use% Mounted on
/dev/mapper/vglmdb_app-lv_u01 ext3 27G 3.8G 23G 14% /u01
If we need to recreate the file-system then
i have below query:
1)What is the RedHat Linux command to increase inode number after recreating the LV:
#mke2fs -i 4096 /dev/vglmdb_app/lv_u01
Or,
#mke2fs -j -N 150000 /dev/vglmdb_app/lv_u01
2) How could i found what is the present (current) "bytes-per-inode" value of "/dev/vglmdb_app/lv_u01" ? I have tried with
"tune2fs -l /dev/vglmdb_app/lv_u01" command but didn't find.
3)For my scenario, how could i determined what is the correct value of "bytes-per-inode" value? i have found below value in google:
*Less than or equal to 1 Gbyte = 2048
*Less than 2 Gbytes = 4096
*Less than 3 Gbytes = 6144
*3 Gbytes up to 1 Tbyte = 8192
Thanks
Minhaz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2010 07:41 PM
05-16-2010 07:41 PM
Re: No space left on device
for NO space left on device, there is a possibility that in /u01 some big files are open and they are showing it to be 100%
du -sk /u01 vs df -h /u01
#lsof /u01
If necessary you may have to stop the process seen in lsof which has too many big files open.
Or restart the service using /u01.
BR,
Kapil+
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2010 08:03 PM
05-16-2010 08:03 PM
Re: No space left on device
Now please give me the guide-line to increase inodes of "/dev/vglmdb_app/lv_u01".
I have made an action plan. Please verify it & if any suggestion or modification required please assist me.
Action Plan1:
Increasing the size of the Logical Volume using "lvextend & ext2online".It will increases the total number of inodes without changing the inodes-per-bytes ratio.
Action Plan 2:
*Stop Application
*Stop Oracle DB
*Backup all data of /u01
*umount /u01
*mke2fs -i 8192 /dev/vglmdb_app/lv_u01
*mount /dev/vglmdb_app/lv_u01 /u01
*Restore Data from backup to /u01
*Start Oracle DB
*Start Application
Thanks
Minhaz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2010 05:02 AM
05-17-2010 05:02 AM
Re: No space left on device
if you increase the FS size its god solution, but if you use the inodes, you need again extend and them what is the threshold ( next step )???
i think the second plan seems to be better.
mikap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2010 11:51 AM
05-17-2010 11:51 AM
Re: No space left on device
cd /u01
du -k | sort -rn | more
Find those biggies and get rid of them. Do the fuser/lsof check first to see if there are open file handles.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2010 01:28 PM
05-22-2010 01:28 PM
Re: No space left on device
You can also tar up 1000s of small files into one bigger file. And extract as needed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2010 07:47 PM
05-22-2010 07:47 PM
Re: No space left on device
Minhaz