- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Unable to Mount Volume
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
06-29-2004 11:14 PM
06-29-2004 11:14 PM
Unable to Mount Volume
One of my volumes /dev/vg00/lvol4 (/var) is corrupt and unmountable
if I try mount it I get -
vxfs mount: /dev/vg00/lvol4 is corrupted. needs checking
So I rebooted the machine in Single user mode and ran the following -
# fsck -F vxfs -y -o full /dev/vg00/lvol4
and this returned the following error -
log replay in progress
vxfs fsck: fsck read failure bno = 2123, off = 0, len = 1024
full file system check required, exiting ...
I thought the command I typed was to force a full file system check?
What's the next step to take?
Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2004 11:20 PM
06-29-2004 11:20 PM
Re: Unable to Mount Volume
fsck /dev/vg00/lvol4 does a full filesystem check
regds
Naveej
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2004 11:29 PM
06-29-2004 11:29 PM
Re: Unable to Mount Volume
#umount [mountpoint]
#fsck â F vxfs â o full /dev/[vg]/[rlvol]
-or if your log area is corrupted-
#fsck â F vxfs â o full,nolog /dev/[vg]/[rlvol]
#mount [mountpo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2004 11:45 PM
06-29-2004 11:45 PM
Re: Unable to Mount Volume
I hope it is readable!
Rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2004 11:58 PM
06-29-2004 11:58 PM
Re: Unable to Mount Volume
maybe you can try the raw device :
fsck -F vxfs -y -o full /dev/vg00/rlvol4
Regards
Franky
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2004 12:03 AM
06-30-2004 12:03 AM
Re: Unable to Mount Volume
check if all extents have status 'current' in lvdisplay:
# lvdisplay -v /dev/vg00/lvol4
Usually 'fsck read failure' stands for a disk problem:
Open an hw call with HP and check disks of vg00, specially disk belongs to /usr.
Best regards,
Ettore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2004 12:14 AM
06-30-2004 12:14 AM
Re: Unable to Mount Volume
A logical volume looks like a disk to the filesystem and if it is reduced, data towards the end of the lvol is inaccessible. The only solution is to extend the lvol back to it's original size (hopefully the free extents were used by another volume being created or extended).
The correct way to reduce an lvol with a filesystem is to backup the entire lvol, then un-mount the lvol, use lvreduce to remove some space, run newfs on the raw lvol to create a new filesystem and then restore the data. Now you can mount it. /var is particularly difficult because it is always in use so all of this must take place in single user mode. Note that Online JFS will almost always fail to reduce a volume without data loss. The exception is the Online JFS ver 3.3 version but the lvols must first be converted to ver 4 volumes. (in other words, you should assume that lvreduce will always destroy any filesystem on the lvol)
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2004 01:55 AM
06-30-2004 01:55 AM
Re: Unable to Mount Volume
Looks like I will have to remove the faulty disk and rebuild the system.
Unfortunately the machine that I am having problems with is not under support anymore
:(
Brian