- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- error on dmesg
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
Discussions
Discussions
Discussions
Forums
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
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
тАО10-16-2007 01:22 PM
тАО10-16-2007 01:22 PM
error on dmesg
how can i see the details of this alarm found on dmesg (syslog)?
what is the possible cause of this alarm?
"SCSI: Unexpected Disconnect -- lbolt: 47866821, dev: cb0df002, io_id: d0000b9"
thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-16-2007 01:59 PM
тАО10-16-2007 01:59 PM
Re: error on dmesg
The first two hex digits (cb) indicate the major device. 0xCB = 203 (dec). Do an lsdev and see what device corresponds to this value. (Probably a tape drive, possibly a robotics device but lsdev will identify it on your particular system).
The next two hex digits (0d) indicate the controller instance, c13.
The next hex digit (f) indevicate the SCSI ID (or target) t15. The next hex digit (0) indicates the LUN (d0). The last two hex digits (02) are device dependent. If 203 is a tape device major number then the
device with the problem is /dev/rmt/c13t15d0.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-16-2007 02:42 PM
тАО10-16-2007 02:42 PM
Re: error on dmesg
upon checking cb (first two hexa digit) is a 203 which upon checking using lsdev is a:
# lsdev |grep 203
203 -1 sctl ctl
#
using ioscan.
# ioscan -nfC ctl
Class I H/W Path Driver S/W State H/W Type Description
=========================================================================
ctl 0 0/0/0/2/0.7.0 sctl CLAIMED DEVICE Initiator
/dev/rscsi/c0t7d0
ctl 1 0/0/0/2/1.7.0 sctl CLAIMED DEVICE Initiator
/dev/rscsi/c1t7d0
ctl 2 0/0/0/3/0.7.0 sctl CLAIMED DEVICE Initiator
/dev/rscsi/c2t7d0
ctl 3 0/0/0/3/1.7.0 sctl CLAIMED DEVICE Initiator
/dev/rscsi/c3t7d0
ctl 12 0/0/6/0/0.7.0 sctl CLAIMED DEVICE Initiator
/dev/rscsi/c14t7d0
ctl 11 0/0/12/0/0.7.0 sctl CLAIMED DEVICE Initiator
/dev/rscsi/c13t7d0
ctl 4 1/0/0/2/0.7.0 sctl CLAIMED DEVICE Initiator
/dev/rscsi/c4t7d0
ctl 5 1/0/0/2/1.7.0 sctl CLAIMED DEVICE Initiator
/dev/rscsi/c5t7d0
ctl 6 1/0/0/3/0.7.0 sctl CLAIMED DEVICE Initiator
/dev/rscsi/c6t7d0
ctl 7 1/0/0/3/1.7.0 sctl CLAIMED DEVICE Initiator
/dev/rscsi/c7t7d0
ctl 21 1/0/2/0/0.2.0.255.0.1.0 sctl CLAIMED DEVICE EMC SYMMETRIX
/dev/rscsi/c30t1d0
ctl 22 1/0/14/0/0.1.0.255.0.1.0 sctl CLAIMED DEVICE EMC SYMMETRIX
/dev/rscsi/c31t1d0
#
so i can say the problem is a third party device?
thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-16-2007 02:47 PM
тАО10-16-2007 02:47 PM
Re: error on dmesg
thanks again...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-16-2007 02:48 PM
тАО10-16-2007 02:48 PM
Re: error on dmesg
ls -l /dev/*/c13t15d0* and see what devices are displayed. sctl is the SCSI pass-thru driver and is very commonly used for robotic (e.g. tape library) devices.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-16-2007 03:07 PM
тАО10-16-2007 03:07 PM
Re: error on dmesg
do you that's was the reason of this alarm?