- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- SCSI error
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
09-12-2001 06:20 PM
09-12-2001 06:20 PM
I am getting following scsi error in syslog every one hour
SCSI: Request Timeout; Abort -- lbolt: 276781692, dev: cb006000, io_id: 1ddd8
SCSI: Request Timeout; Abort -- lbolt: 277143897, dev: cb006000, io_id: 1ddff
SCSI: Request Timeout; Abort -- lbolt: 277350082, dev: cb006000, io_id: 1de07
How to find out which device giving problem.
Thanks in advance
Animesh
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2001 06:36 PM
09-12-2001 06:36 PM
SolutionHave a look at these threads.
http://us-support3.external.hp.com/cki/bin/doc.pl/sid=e45e22e104fb0b6e9b/screen=ckiDisplayDocument?docId=200000044658857
http://us-support3.external.hp.com/cki/bin/doc.pl/sid=e45e22e104fb0b6e9b/screen=ckiDisplayDocument?docId=200000048373145
Hope this helps.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2001 09:23 PM
09-12-2001 09:23 PM
Re: SCSI error
Thanks for your response.
In my case the dev=cb006000
cb 00 6 0 00
__ __ _ _ __
| | | | |
major# | target | flags
| |
bus# lun
But the major number cb(203 in dec) can't find
in my machine.
Any idea ? In this case c*t6d0 ?
Thanks
Animesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2001 01:40 AM
09-13-2001 01:40 AM
Re: SCSI error
The following command will probably find the right device file:
find /dev | xargs ll | grep 203
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2001 04:05 AM
09-13-2001 04:05 AM
Re: SCSI error
Looks like c0t6d0 to me.
cb006000
cb --> Major No,
00 --> Bus (c0)
6 --> SCSI ID (t6)
0 --> LUN (d0)
00 --> Flag
Hope this helps.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2001 04:42 AM
09-13-2001 04:42 AM
Re: SCSI error
The major no 203 refers to the SCSI controller.
To find the driver associated with this major No.,do
lsdev |grep 203
The result would be
203 -1 sctl ctl
Do "ioscan -fn |grep sctl"
The result would be
ctl 10/0.7.0 sctl CLAIMED DEVICE Initiator
ctl 10/12/5.7.0 sctl CLAIMED DEVICE Initiator
This shows that the majot no referes to the Controller Driver.
Hope this helps.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2001 12:42 PM
09-14-2001 12:42 PM
Re: SCSI error
I learned something useful.
Thanks,
sachin