Promise VTrak:SAS で接続された 4 つめの拡張シャーシのみ:Xsan (データ専用) の構成スクリプト

  • 最終更新日: 10 6月, 2009
  • 記事: HT3602

概要

この記事には、Promise VTrak の SAS で接続された拡張シャーシを Xsan 用に構成するスクリプトが含まれています。このスクリプトは、Promise VTrak の RAID コントローラが Xsan での使用に合わせて構成されており、拡張シャーシがその構成済みの RAID コントローラに接続されている場合に使います。

構成スクリプトを作成するには、以下のテキストにある「#Begin Copy」から「#End Copy」の間の行をコピーし、こちらのガイドライン にそって「テキストエディット」にそのテキストをペーストします。

スクリプトを作成した後、こちらの記事 のガイドラインにそって、構成スクリプトを読み込みます。

対象製品

Promise VTrak

#Begin Copy

#

# Promise VTrak E-Class configuration script

#

# Script Name: Fourth SAS-connected Expansion Chassis: Xsan (Data Only)

# Script Version: 2.0 (06/01/09)

#

# Script Details:     builds 3 LUNs from 16 drives (Fourth expansion unit)

#               in the recommended configuration for use with Xsan 2

#

# Script Assumptions: no arrays or logical drives created

#                     (uncomment out array deletion if needed)

#                     script works with either SATA or SAS configurations

#

# Global controller settings

# LUN Affinity:             enabled [required]

# Adaptive Writeback Cache: enabled [optional]

# Host Cache Flushing:      disabled [optional]

# Forced Read Ahead:        enabled [optional]

#

#ctrl -a mod -i 1 -s "lunaffinity=enable, adaptivewbcache=enable, hostcacheflushing=disable, forcedreadahead=enable"

#ctrl -a mod -i 2 -s "lunaffinity=enable, adaptivewbcache=enable, hostcacheflushing=disable, forcedreadahead=enable"

#

# Delete any existing arrays

# Delete array 12 thru 14

#

#array -a del -d 12

#array -a del -d 13

#array -a del -d 14

#

# Build Data5 LUN
# RAID level:            5
# Physical Drives:       65, 66, 69, 70, 73, 74
# Alias:                 Data9
# Controller Affinity:   1
# Configuration options: Capacity all (default), 64K stripe size (default),
#                        512K sector (default), Read Ahead, Write Back
#
array -a add -p 65,66,69,70,73,74 -s "alias=Data9" -c 1 -l "alias=Data9,raid=5,readpolicy=readahead,writepolicy=writeback,preferredctrlid=1"
#
# Build Data6 LUN
# RAID level:            5
# Physical Drives:       67, 68, 71, 72, 75, 76
# Alias:                 Data10
# Controller Affinity:   2
# Configuration options: Capacity all (default), 64K stripe size (default),
#                        512K sector (default), Read Ahead, Write Back
#
array -a add -p 67,68,71,72,75,76 -s "alias=Data10" -c 2 -l "alias=Data10,raid=5,readpolicy=readahead,writepolicy=writeback,preferredctrlid=1"
#
# Build Audio/Scratch LUN
# RAID level:            5
# Physical Drives:       77, 78, 79
# Alias:                 Scratch5
# Controller Affinity:   2
# Configuration options: Capacity all (default), 64K stripe size (default),
#                        512K sector (default), Read Ahead, Write Back
#
array -a add -p 77,78,79 -s "alias=Scratch5" -c 1 -l "alias=Scratch5,raid=5,readpolicy=readahead,writepolicy=writeback,preferredctrlid=1"
#
# Set up global spares
# Physical Drives:80
# Type:            Global spares, Revertible
#

spare -a add -p 80 -t g -r y
#
# Perform Init on all LUNs
#
init -a start -l 12 -q 100
init -a start -l 13 -q 100
init -a start -l 14 -q 100



# END

#

#End Copy

Important: Information about products not manufactured by Apple is provided for information purposes only and does not constitute Apple’s recommendation or endorsement. Please contact the vendor for additional information.

Not helpful Somewhat helpful Helpful Very helpful Solved my problem