歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Unix知識 >> 關於Unix >> Solaris下的MPXIO

Solaris下的MPXIO

日期:2017/2/28 11:10:07   编辑:關於Unix


今天用SUN的V245 +LSI 3994 想測試下 LSI的存儲在Solaris下的路徑冗余,因為用LSI帶的RDAC裝完系統就Hang住了……
操作系統環境 SUN-V245 Solaris10 U5 HBA卡是Emulex的 LPE11002 雙端口的,先用LSI的Santricity 做了一個Raid
然後在Solaris 下用Format 能看到倆個盤
接著如果使用第三方的存儲就如下:
#
# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
#
name="scsi_vhci" class="root";
#
# Load balancing global configuration: setting load-balance="none" will cause
# all I/O to a given device (which supports multipath I/O) to occur via one
# path. Setting load-balance="round-robin" will cause each path to the device
# to be used in turn.
#
load-balance="round-robin";
#
# Automatic failback configuration
# possible values are auto-failback="enable" or auto-failback="disable"
auto-failback="enable";
#
# For enabling MPxIO support for 3rd party symmetric device need an
# entry similar to following in this file. Just replace the "SUN SENA"
# part with the Vendor ID/Product ID for the device, exactly as reported by
# Inquiry cmd.
#
# device-type-scsi-options-list =
# "SUN SENA", "symmetric-option";
#
# symmetric-option = 0x1000000;
如果需要添加別的存儲 在下面添加如下:
device-type-scsi-options-list =
“DGC RAID”, “symmetric-option”;
symmetric-option = 0×1000000;不過我操作的時候沒有添加,直接執行的下一步 也可以實現 怎麼識別Vendor ID/Product ID 我還都不太清楚……然後呢執行:
bash-3.00# stmsboot -eWARNING: This operation will require a reboot.
Do you want to continue ? [y/n] (default: y) y
The changes will come into effect after rebooting the system.
Reboot the system now ? [y/n] (default: y) y
This required a reboot, so I rebooted the machine, and low and behold the devices appeared correctly:
重啟以後 在用format 應該就會只看到一個盤了。
Copyright © Linux教程網 All Rights Reserved