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-08-2009 01:38 AM
09-08-2009 01:38 AM
scsi_id
server is RHEL 5.3. i need to find the wwid. When i issue the below commands noting is returned. What's wrong in the command?
scsi_id -g -u -d /dev/cciss/c0d0
scsi_id -g -u -s /block/cciss\!c0d0/
cheers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2009 05:11 AM
09-08-2009 05:11 AM
Re: scsi_id
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2009 05:58 AM
09-08-2009 05:58 AM
Re: scsi_id
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2009 06:11 AM
09-08-2009 06:11 AM
Re: scsi_id
[root@idmsv01 ~]# scsi_id -g -s /block/sda
gives open class /sys/block/sda failed: No such file or directory
because there is no sda at the given path. .
And go to vi /etc/scsi_id.config and you have to see;
# If you know all the scsi devices on your system support valid id's,
# remove the options=-b line, and mark all devices as good:
options=-g
is non comment out while options b is comment out: (as rescue from balcklist)
# If you normally don't need scsi id's, or might be attaching devices of
# an unknown functionality, black list everyone. This is the default
# behaviour (if no -b or -g is specified).
#
# options=-b
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2009 09:41 PM
09-08-2009 09:41 PM
Re: scsi_id
my scsi_id.config is as below.
options=-g
# some libata drives require vpd page 0x80
vendor="ATA",options=-p 0x80
and the commands that i executed were:
scsi_id -g -u -d /dev/cciss/c0d0
scsi_id -g -u -d /dev/cciss/c0d0p1
scsi_id -g -u -d /dev/cciss/c0d0p2
scsi_id -g -u -s /block/cciss\!c0d0/cciss\!c0d0p1
scsi_id -g -u -s /block/cciss\!c0d0
but the return code is 1 for the above commands. what am i doing wrong?
cheers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2009 10:39 PM
09-08-2009 10:39 PM
Re: scsi_id
# scsi_id -g -u -s /block/cciss\!c0d0
/sys/block/cciss!c0d0 is not a scsi device
so if you go to the directory:
cd /sys/block
and make
ls -al
can you see
sdd ?
According to docs. need an sdd type to see WWID of the SCSI device:
# scsi_id -g -u -s /block/sdd
if you check version of RHEL :
cat /proc/version
I believe,you have to own RHEL 5.X to use scsi_id , since I have Red Hat 3.4.6-3 I cannot test for you . .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2009 10:46 PM
09-08-2009 10:46 PM
Re: scsi_id
Yes it's RHEL 5.3. I have no sdd devices. But, there should be some way i can get the WWID for a scsi device.
cheers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2009 10:54 PM
09-08-2009 10:54 PM
Re: scsi_id
# hdparm -i /dev/hda
if it works you have ide not scsi like my server. .
# hdparm -i /dev/sda
if it works you have a scsi as far as I got
also a useful command:
# ls /dev/disk/by-path
pci-0000:00:1f.1-ide-0:0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2009 09:37 PM
09-09-2009 09:37 PM
Re: scsi_id
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2009 03:01 AM
09-10-2009 03:01 AM
Re: scsi_id
Probably u r right. At least it is not a scsi id asker is looking for..