- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: FSCK check failure
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
03-21-2005 07:53 PM
03-21-2005 07:53 PM
FSCK check failure
we have an 11.11 box.
Today trying to fsck a logical volume we get the following message:
fsck
file system is larger than device
vxfs fsck: cannot initialize aggregate
file system check failure, aborting ...
our volume is so composed:
--- Logical volumes ---
LV Name /dev/vgsvilbv/lvhome
VG Name /dev/vgsvilbv
LV Permission read/write
LV Status available/syncd
Mirror copies 0
Consistency Recovery MWC
Schedule parallel
LV Size (Mbytes) 8500
Current LE 2125
Allocated PE 2125
Stripes 0
Stripe Size (Kbytes) 0
Bad block on
Allocation strict
IO Timeout (Seconds) default
We tried to specify the FS type and the force option without success.
Any ideas?
Many Thanks,
Alessandro Potenziani
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2005 07:58 PM
03-21-2005 07:58 PM
Re: FSCK check failure
nothing like a little search among the threads to find this:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=766639
hope it help.
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2005 09:20 PM
03-21-2005 09:20 PM
Re: FSCK check failure
the article doesn't help me.
In fact the LV is bigger than FS but the fsck error still appears.
need more suggestion.
Alessandro
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2005 09:34 PM
03-21-2005 09:34 PM
Re: FSCK check failure
Could you post
# fstyp -v /dev/vgsvilbv/lvhome
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2005 09:36 PM
03-21-2005 09:36 PM
Re: FSCK check failure
below the fstyp -v command.
Thanks,
AP
# fstyp -v /dev/vgsvilbv/lvhome
vxfs
Cannot open /dev/vgsvilbv/lvhome: Invalid argument
Cannot open /dev/vgsvilbv/lvhome: Invalid argument
version: 4294967295
f_bsize: 8192
f_frsize: 1024
f_blocks: 8704000
f_bfree: 7578065
f_bavail: 7104436
f_files: 1939828
f_ffree: 1894516
f_favail: 1894516
f_fsid: 1074135043
f_basetype: vxfs
f_namemax: 254
f_magic: a501fcf5
f_featurebits: 0
f_flag: 16
f_fsindex: 7
f_size: 8704000
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2005 09:37 PM
03-21-2005 09:37 PM
Re: FSCK check failure
how about this:
http://www1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000072760980
in your case:
# lvextend -L (more than 8500) /dev/vgsvilbv/lvhome
# extendfs /dev/vgsvilbv/rlvhome
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2005 09:47 PM
03-21-2005 09:47 PM
Re: FSCK check failure
I already extended the LV (is now 9000MB) and tried to extend the FS gave the error message that it's dirty.
AP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2005 09:53 PM
03-21-2005 09:53 PM
Re: FSCK check failure
Do a full file system check
# fsck -F vxfs -o full -y /dev/vgsvilbv/rlvhome
mount your filesystem.
# mount /dev/vgsvilbv/lvhome
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2005 09:58 PM
03-21-2005 09:58 PM
Re: FSCK check failure
file system is larger than device
vxfs fsck: cannot initialize aggregate
file system check failure, aborting ...
AP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2005 10:08 PM
03-21-2005 10:08 PM
Re: FSCK check failure
RESOLUTION
The error is due to trying to restore a filesystem to a device that is not
large enough to accomodate it. You can resolve the error with the following
steps:
Set the appropriate size that the filesystem needs to be (where size is
slightly larger by a few PE's.)
# lvextend -L size /dev/vgXX/lvolX
# extendfs /dev/vgXX/rlvolX
Do a full file system check
# fsck -F vxfs -o full -y /dev/vgXX/rlvolX
You can now mount your filesystem.
# mount /dev/vgXX/lvolXX /mount-pt
it seems u need more than 9000MB, but could u reply this output:
# lvdisplay /dev/vgsvilbv/lvhome
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2005 10:25 PM
03-21-2005 10:25 PM
Re: FSCK check failure
unfortunately the suggestion did not work:
# lvextend -L 12000 /dev/vgsvilbv/lvhome
Logical volume "/dev/vgsvilbv/lvhome" has been successfully extended.
vgcfgbackup: /etc/lvmtab is out of date with the running kernel:Kernel indicates 4 disks for "/dev/vgsvilbv"; /etc/lvmtab has 3 disks.
Cannot proceed with backup.
# extendfs -F vxfs /dev/vgsvilbv/rlvhome
vxfs extendfs: FS is dirty, run fsck first.
# fsck -F vxfs -o full -y /dev/vgsvilbv/rlvhome
file system is larger than device
vxfs fsck: cannot initialize aggregate
file system check failure, aborting ...
Regards,
AP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2005 10:39 PM
03-21-2005 10:39 PM
Re: FSCK check failure
u definitely got a more serious problem judging from the last error message.
r u able to access this doc:
http://www1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000076088072
if indicate this ID, HPUXKBRC00015714, in the technical knowledge base.
anyway, how did this happen?
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2005 10:47 PM
03-21-2005 10:47 PM
Re: FSCK check failure
i can't access that document too...
This sad situation come from a reboot coomand issued yesterday.
I don't know why the kernel shows 4 disks. This LV is formed by 2 disks from the beginning and it never had a PV extesion.
AP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2005 10:50 PM
03-21-2005 10:50 PM
Re: FSCK check failure
by the way, which version is the HPUX?
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2005 11:00 PM
03-21-2005 11:00 PM
Re: FSCK check failure
Why the kernel indicates a different number of PV if this VG had never and never a modify??
The version of OS is 11.11.
Thanks,
AP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2005 12:09 AM
03-22-2005 12:09 AM
Re: FSCK check failure
vgcfgbackup: /etc/lvmtab is out of date with the running kernel:Kernel indicates 4 disks for "/dev/vgsvilbv"; /etc/lvmtab has 3 disks.
Cannot proceed with backup.
The number of disks that the system thinks are in this VG is different then what you think and is inconsisten.
Please post output from "strings /etc/lvmtab" and vgdisplay -v /dev/vgsvilbv .
Best regards,
Oz