- Community Home
- >
- Storage
- >
- Entry Storage Systems
- >
- Disk Enclosures
- >
- Re: Connecting a solaris box to a HP XP
Disk Enclosures
1819791
Members
3416
Online
109607
Solutions
Forums
Categories
Company
Local Language
юдл
back
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
юдл
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- 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
тАО08-02-2007 09:26 AM
тАО08-02-2007 09:26 AM
Hi all,
I'm desperate and trying everything so why not a HP forum as seems far more responsive than the sun ones. I have attached a sun server to a HP XP 1024 array. This all went fine but I can setup MPXIO dual pathing software. Has anyone seen documentation on setting this up with a solaris 10 server.
Cheers
I'm desperate and trying everything so why not a HP forum as seems far more responsive than the sun ones. I have attached a sun server to a HP XP 1024 array. This all went fine but I can setup MPXIO dual pathing software. Has anyone seen documentation on setting this up with a solaris 10 server.
Cheers
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-02-2007 09:38 AM
тАО08-02-2007 09:38 AM
Re: Connecting a solaris box to a HP XP
Hi Adam,
have you seen this doc.
http://h20000.www2.hp.com/bc/docs/support/SupportManual/c00854937/c00854937.pdf
Regards,
Robert-Jan
have you seen this doc.
http://h20000.www2.hp.com/bc/docs/support/SupportManual/c00854937/c00854937.pdf
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-02-2007 11:18 AM
тАО08-02-2007 11:18 AM
Solution
Hello,
Solaris 10 setup is actually very easy.
I have done it for many customers.
a) Set up /kernel/drv/fp.conf. For example, if you want to disable MPxIO globally, but enable it for specific FC cards:
name="fp" class="fibre-channel" port=0;
name="fp" class="fibre-channel" port=1;
scsi-binding-set="fcp";
load-ulp-list="1","fcp";
ddi-forceattach=1;
mpxio-disable="yes";
name="fp" parent="/pci@9,700000/SUNW,qlc@2" port=0 mpxio-disable="no"; name="fp" parent="/pci@9,600000/SUNW,qlc@2" port=0 mpxio-disable="no";
Or, if you want to enable it globally,
simply use:
mpxio-disable="no"
... and leave the rest of the file as is...
b) For XP SAN, add the following into /kernel/drv/scsi_vhci.conf:
device-type-scsi-options-list =
"HP OPEN", "symmetric-option";
symmetric-option = 0x1000000;
On the other hand, if you also connect
Ultrium-3 FC-tape drives, scsi_vhci.conf
might look like this:
device-type-scsi-options-list =
"HP OPEN", "symmetric-option",
"HP Ultrium 3-SCSI", "disable-option",
"HP Ultrium 3-SCSI ", "disable-option",
"HP Ultrium 3", "disable-option",
"HP Ultrium ", "disable-option",
"HP Ultrium LTO 3", "disable-option",
"HP ULTRIUM3", "disable-option",
"HP Ultrium3", "disable-option";
symmetric-option = 0x1000000;
disable-option = 0x7000000;
WARNING: there must be exactly six
blank spaces between HP and OPEN.
Same applies to HP and Ultrium strings!
c) Reboot and test for each LUN:
luxadm -v display /dev/rdsk/c2t50060E80039DC40000009DC40000088Fd0s2
Displaying information for: /dev/rdsk/c2t50060E80039DC40000009DC40000088Fd0s2
DEVICE PROPERTIES for disk: /dev/rdsk/c2t50060E80039DC40000009DC40000088Fd0s2
Vendor: HP
Product ID: OPEN-V -SUN
Revision: 2114
Serial Num: 04509DC4088F
Unformatted capacity: 13905.000 MBytes
Write Cache: Enabled
Read Cache: Enabled
Minimum prefetch: 0x0
Maximum prefetch: 0x0
Device Type: Disk device
Path(s):
/dev/rdsk/c2t50060E80039DC40000009DC40000088Fd0s2
/devices/scsi_vhci/ssd@g50060e80039dc40000009dc40000088f:c,raw
Controller /devices/pci@9,700000/SUNW,qlc@2/fp@0,0
Device Address 50060e80039dc412,0
Host controller port WWN 210000e08b8176f9
Class primary
State ONLINE
Controller /devices/pci@9,600000/SUNW,qlc@2/fp@0,0
Device Address 50060e80039dc402,0
Host controller port WWN 210000e08b82593c
Class primary
State ONLINE
Best wishes,
VK2COT
Solaris 10 setup is actually very easy.
I have done it for many customers.
a) Set up /kernel/drv/fp.conf. For example, if you want to disable MPxIO globally, but enable it for specific FC cards:
name="fp" class="fibre-channel" port=0;
name="fp" class="fibre-channel" port=1;
scsi-binding-set="fcp";
load-ulp-list="1","fcp";
ddi-forceattach=1;
mpxio-disable="yes";
name="fp" parent="/pci@9,700000/SUNW,qlc@2" port=0 mpxio-disable="no"; name="fp" parent="/pci@9,600000/SUNW,qlc@2" port=0 mpxio-disable="no";
Or, if you want to enable it globally,
simply use:
mpxio-disable="no"
... and leave the rest of the file as is...
b) For XP SAN, add the following into /kernel/drv/scsi_vhci.conf:
device-type-scsi-options-list =
"HP OPEN", "symmetric-option";
symmetric-option = 0x1000000;
On the other hand, if you also connect
Ultrium-3 FC-tape drives, scsi_vhci.conf
might look like this:
device-type-scsi-options-list =
"HP OPEN", "symmetric-option",
"HP Ultrium 3-SCSI", "disable-option",
"HP Ultrium 3-SCSI ", "disable-option",
"HP Ultrium 3", "disable-option",
"HP Ultrium ", "disable-option",
"HP Ultrium LTO 3", "disable-option",
"HP ULTRIUM3", "disable-option",
"HP Ultrium3", "disable-option";
symmetric-option = 0x1000000;
disable-option = 0x7000000;
WARNING: there must be exactly six
blank spaces between HP and OPEN.
Same applies to HP and Ultrium strings!
c) Reboot and test for each LUN:
luxadm -v display /dev/rdsk/c2t50060E80039DC40000009DC40000088Fd0s2
Displaying information for: /dev/rdsk/c2t50060E80039DC40000009DC40000088Fd0s2
DEVICE PROPERTIES for disk: /dev/rdsk/c2t50060E80039DC40000009DC40000088Fd0s2
Vendor: HP
Product ID: OPEN-V -SUN
Revision: 2114
Serial Num: 04509DC4088F
Unformatted capacity: 13905.000 MBytes
Write Cache: Enabled
Read Cache: Enabled
Minimum prefetch: 0x0
Maximum prefetch: 0x0
Device Type: Disk device
Path(s):
/dev/rdsk/c2t50060E80039DC40000009DC40000088Fd0s2
/devices/scsi_vhci/ssd@g50060e80039dc40000009dc40000088f:c,raw
Controller /devices/pci@9,700000/SUNW,qlc@2/fp@0,0
Device Address 50060e80039dc412,0
Host controller port WWN 210000e08b8176f9
Class primary
State ONLINE
Controller /devices/pci@9,600000/SUNW,qlc@2/fp@0,0
Device Address 50060e80039dc402,0
Host controller port WWN 210000e08b82593c
Class primary
State ONLINE
Best wishes,
VK2COT
VK2COT - Dusan Baljevic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-14-2007 08:40 PM
тАО08-14-2007 08:40 PM
Re: Connecting a solaris box to a HP XP
Thanks for all your help and apologies for late response. This issue went on for some time and eventually it was determined that you need mode 244 set on the XP array itself.
Once this mode was set (and don't let HP tell you it needs a reboot of the array) all was fine and mpxio is functioning as expected.
Just thought I'd post this incase anyone has the same problem
Once this mode was set (and don't let HP tell you it needs a reboot of the array) all was fine and mpxio is functioning as expected.
Just thought I'd post this incase anyone has the same problem
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Learn About
News and Events
Support
© Copyright 2025 Hewlett Packard Enterprise Development LP