- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: MCSG 10.10: Identification Of SCSI Disks Betwe...
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
06-27-2002 12:13 PM
06-27-2002 12:13 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 12:24 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 12:26 PM
06-27-2002 12:26 PM
Re: MCSG 10.10: Identification Of SCSI Disks Between Nodes
The device files are bound to change if they are installed on different controllers in a different manner.
NodeA may have device file /dev/dsk/c1t2d0
NodeB may have device file /dev/dsk/c2t2d0 for the same disk.
Using ioscan -fnC disk and cmquercl -v you can find out the hardware path and device files.
During planning of a MCSG cluster, the hardware paths and devices have to be taken into consideration.
Piyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 12:28 PM
06-27-2002 12:28 PM
Re: MCSG 10.10: Identification Of SCSI Disks Between Nodes
I would use the cmscancl command along with ioscan which should give you the output you need.
Hope this helps
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 01:32 PM
06-27-2002 01:32 PM
Re: MCSG 10.10: Identification Of SCSI Disks Between Nodes
One of the easiest ways i have found is to use inquiry utility from emc. It works for disks other than emc.
you can get inq from
ftp://ftp.emc.com/pub/symm3000/inquiry/latest/
And it is available for all kinds of platforms.
-HTH
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 11:30 PM
06-27-2002 11:30 PM
Re: MCSG 10.10: Identification Of SCSI Disks Between Nodes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 11:41 PM
06-27-2002 11:41 PM
Re: MCSG 10.10: Identification Of SCSI Disks Between Nodes
If you want to share volume group for the cluster, you can use vgimport with the -s (shared) otion.
Create the vg on the first node, then create a mapfile usin vgexport :
# vgexport -v -p -s -m mapfile
then send the mapfile on the other node and import the vg :
# mkdir /dev/
# mknode /dev/
# vgimport -v -s -m mapfile
Then you can check the difference for the hardware path using vgdisplay on both nodes.
Fr??d??ric
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2002 06:23 AM
07-01-2002 06:23 AM
Re: MCSG 10.10: Identification Of SCSI Disks Between Nodes
At SG 10.10 and later, an undocumented option can be exploited to find common disks between nodes: -T
Example:
cmquerycl -T 3 -n
Debug (rong) added disk at /dev/dsk/c0t1d0 (ID 418374281 1022698686) 8.1.0 scsi3
Debug (rong) added disk at /dev/dsk/c0t1d1 (ID 418374281 1022783680) 8.1.1 scsi3
Debug (rong) added disk at /dev/dsk/c1t5d0 (ID 418374281 917835374) 52.5.0 scsi1
Debug (rong) added disk at /dev/dsk/c1t6d0 (ID 418374281 917835377) 52.6.0 scsi1
Adding the other node to the cmquerycl command, and using the "awk" and "sort" commands, the output can be prettied up:
# cmquerycl -T 3 -n rong | grep "added disk" | sort -n -k 9,9 | awk '{print $2,$10, $6,$9}'
(rong) 8.1.0 /dev/dsk/c0t1d0 1022698686) \the same disk
(rite) 12.1.0 /dev/dsk/c1t1d0 1022698686) /
(rong) 8.1.1 /dev/dsk/c0t1d1 1022783680) \the same disk
(rong) 12.1.1 /dev/dsk/c1t1d1 1022783680) /
-s.