Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Get MPIO to work with Hitachi (HP XP) SAN

Disk and filesystem management

Get MPIO to work with Hitachi (HP XP) SAN

by  mrn  Posted    (Edited  )
Struggled with this for a while, but here's how I setup MPIO with a HP XP 12000 (Hitachi SAN)

odmget -qattribute=mpio_model_map PdAt > /tmp/odm.orig

cp /tmp/odm.orig /tmp/odm.modif

vi /tmp/odm.modif

change all occurances of HITACHI to HP<><><><><> where <> is a space

1,$s/HITACHI/HP /g
wq

odmadd /tmp/odm.modif

cfgmgr

if you already have disks showing remove and re-run cfgmgr.

lsdev -l hdisk* > /tmp/disks

edit /tmp/disks and remove internal disks from file (hdisk0,1...)

for i in `cat /tmp/disks` ; do
rmdev -l $i -d
done


This method doesn't support load balancing (you'll have to get a copy of HDLM to do that)
Hope this helps
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top