- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Read error in syslog
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-19-2003 03:40 AM - last edited on 03-05-2014 06:26 PM by Lisa198503
05-19-2003 03:40 AM - last edited on 03-05-2014 06:26 PM by Lisa198503
Read error in syslog
Hi,
I am getting the following read error in the syslog.
vmunix: SCSI: Read error -- dev: b 31 0x03d000, errno:126, resid: 2048
Could anyone please tell How to identify LV and PV associated with this and recover from the error.
Thanks
P.S. This thread has been moved from Disk to HP-UX > LVM and VxVM. -HP Forum Moderator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 04:18 AM
05-19-2003 04:18 AM
Re: Read error in syslog
dev 0x03d000 equates to c3t13d0.
2) To id the logical volume:
pvdisplay -v /dev/dsk/c3t13d0 | more
3) To test for disk failure:
3a) dd if=/dev/dsk/c3t13d0 of=/dev/null count=1000000
3b) Do you get a prompt back?
4) What O/S? For 11.11 this patch is recommended:
PHKL_26743
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x981736e69499d611abdb0090277a778c,00.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 05:52 AM
05-19-2003 05:52 AM
Re: Read error in syslog
I wonder how the translation to 'c3t13d0'was done from 0x03d000, is it hex to decimal.
pvdisplay -v /dev/dsk/c3t13d0 | more
dd if=/dev/dsk/c3t13d0 of=/dev/null count=1000000
The above statements took long time without any output so that I stopped the session.
The OS is B.11.00 A 9000/810.
Is there any other ways to recover the disk or LV on the disk. I think some of LV are mirrored onto other disk.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 06:35 AM
05-19-2003 06:35 AM
Re: Read error in syslog
dd command is correct one to discover read errors. Try in this way
dd if=/dev/dsk/c3t13d0 of=/dev/null bs=4096k
this will read all the disk by 4MB blocks. If it will come up with 'I/O error' then backup disk and call for replacement, if not - check syslog to see if there're read errors logged (if yes, but dd did not come up with 'I/O error' this means that error was recovered with retries)
Eugeny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2003 05:01 AM
05-20-2003 05:01 AM
Re: Read error in syslog
The disk is replaced. Thanks for your help.
Thanks