- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Error 28: 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
02-14-2010 11:38 PM
02-14-2010 11:38 PM
Error 28: No space left on device
Our cutomer had an rx8640 server running HPUX 11i v3. Many logical volumes were created on the XP storage connected to server.
We are not able to create any file on the following directory /db_ora_bckp. This directory is not fully used. An error appears whenever we try to create any file.
Error detail: HPUX-ia64 Error: 28: No space left on device
Kindly find attached more details related to syslog , vgdisplay , fstab and bdf.
Thanks and Regards
Roger
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2010 12:23 AM
02-15-2010 12:23 AM
Re: Error 28: No space left on device
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2010 01:57 AM
02-15-2010 01:57 AM
Re: Error 28: No space left on device
The customer is not able to create any file even when using HPUX command touch.
The attached file includes more details about the errors.
Regards
Roger
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2010 02:20 AM
02-15-2010 02:20 AM
Re: Error 28: No space left on device
>file system error reading inode 3
Your disk has I/O errors, time to replace it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2010 02:45 AM
02-15-2010 02:45 AM
Re: Error 28: No space left on device
> Feb 13 01:08:16 browning vmunix: vxfs: WARNING: msgcnt 236 mesg 056: V-2-56: vx_mapbad - vx_smap_stateupd - /dev/vg_SVbckp/lv_SVbckp file system extent allocation unit state bitmap number 10 marked bad
Your later attachment has more filesystem errors:
> Feb 13 01:10:09 browning vmunix: vxfs: WARNING: msgcnt 241 mesg 016: V-2-16: vx_ilisterr: vx_iread_2 - /db_ora_bckp file system error reading inode 5
The relevant part of bdf output:
> /dev/vg_SVbckp/lv_SVbckp
2023751680 576421914 1356871656 30% /db_ora_bckp
The syslog messages indicates your filesystem has errors. This might cause any amount of strange behavior.
If this is on XP storage, the status of the XP storage system should be checked very carefully. If it has RAID1, RAID5 or any other fault tolerant RAID configuration, this simply should never happen unless the XP has multiple failed disks. If that's the case, the situation is definitely very bad and some of your data may already be lost. I hope you have good backups.
If you want to try recovering your filesystem (instead of restoring everything from backups), here's something to try:
Unmount the filesystem, then run a full file system check on it:
umount /db_ora_bckp
fsck -F vxfs -o full /dev/vg_SVbckp/lv_SVbckp
A full filesystem check may take a long time.
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2010 07:21 AM
02-15-2010 07:21 AM
Re: Error 28: No space left on device
BUT....
...before you umount that file system, please ensure you have a solid backup of whatever is on there in case you need to restore something.
Kindest regards,
Rita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2010 03:48 PM
02-15-2010 03:48 PM
Re: Error 28: No space left on device
I suppose your filesystem could be corrupted if there was a recent crash or power failure.
You could use dd(1) to read the raw disk to see if you find any I/O errors. If not, MK's fsck(1m) may fix it.