- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Problem with fsck
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
04-13-2003 03:27 PM
04-13-2003 03:27 PM
Problem with fsck
fsck /dev/vg00/lvol8
log replay in progress
vxfs fsck: fsck read failure bno = 43180, off = 0, len = 1024
full file system check required, exiting ..
Then we do a
fsck -F vxfs -o full,nolog /dev/vg00/lvol8
Result:
pass0 - checking structural files
pass1 - checking inode sanity and blocks
vxfs fsck: fsck read failure bno = 43180, off = 0, len = 8192
file system check failure, aborting ...
Does anybody know why it's aborting ? Is my disk crashed or can I fix this, ? How?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2003 03:54 PM
04-13-2003 03:54 PM
Re: Problem with fsck
I suspect you have a disk that could be failing. Suggest you have a look at /var/adm/syslog/syslog.log file for any messages. You could run some disk exercise tools to see if it reports anything.
You could try stm/cstm/mstm/xstm and exercise the disk, or even use 'dd'
e.g.
# dd if=/dev/rdsk/c1t2d0 of=/dev/null bs=1024k
Regards
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2003 04:06 PM
04-13-2003 04:06 PM
Re: Problem with fsck
Its aborting as it cannot garauntee the consistency of the filesystem due to some problem reading block 43180. The first thing to check would be the syslog and message buffer for an IO/VxFS errors:
# grep vmunix /var/adm/syslog/syslog.log
# dmesg
You can also try to physically read from the disk partition to check for any IO problems:
# dd if=/dev/vg00/rlvol8 of=/dev/null bs=51k
You can adjust the blocksize depending on the size of the logical volume. You may also check the physical block using fsdb:
# fsdb -F vxfs /dev/vg00/rlvol8
> 43180 b; p 100 x
This will read 100 bytes in hex from that location. Use
# lvdisplay -v /dev/vg00/lvol8|grep -i stale
Depending what commands report the errors you will probably have to replace the disk or recreate the filesystem. If you post some of the output I can help decide which one.
Other things to be aware of:
i. Ensure you are properly patched. You never mentioned the OS but if at 10.20 or 11.00 ensure you have the LITS patches installed (PHKL_16751/PHKL_18543)
ii. If by some chance the logical volume resides on a disk array you must check the recommended bad block reallocation policy for that array. All high end arrays, XP, EMC for example you must have bad block reallocation set to NONE. You can see this from lvdisplay.
Regards,
James.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2003 04:12 PM
04-13-2003 04:12 PM
Re: Problem with fsck
Unfortunately in my defect
lvol is /var. So I can't
check syslog.
Also tools like stm won't
start.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2003 04:22 PM
04-13-2003 04:22 PM
Re: Problem with fsck
gone:
dd if=/dev/vg00/rlvol8 of=/dev/null bs=51k
dd read error: I/O error
846+0 records in
846+0 records out
Or any other ideas?
PS: I'm havin HP-UX11.0 installed
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2003 04:43 PM
04-13-2003 04:43 PM
Re: Problem with fsck
Sorry, can I take from the last comment you are just installing 11.00 onto this disk?
If this is not the case what does the lvdisplay output show? Is the disk mirrored?
In any event your disk appears to be faulty and should be replaced. If it is mirrored you may be able to reduce this mirror and fsck the filesystem on the other disk as a workaround until you get it replaced.
Regards,
James.