Promise VTrak:SAS で接続された 2 つめの拡張シャーシのみ:Xsan (データ専用) の構成スクリプト
概要
この記事には、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: Third SAS-connected Expansion Chassis: Xsan (Data Only)
# Script Version: 2.0 (06/01/09)
#
# Script Details: builds 3 LUNs from 16 drives (Third 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 9 thru 11
#
#array -a del -d 9
#array -a del -d 10
#array -a del -d 11
#
# Build Data5 LUN
# RAID level: 5
# Physical Drives: 49, 50, 53, 54, 57, 58
# Alias: Data7
# Controller Affinity: 1
# Configuration options: Capacity all (default), 64K stripe size (default),
# 512K sector (default), Read Ahead, Write Back
#
array -a add -p 49,50,53,54,57,58 -s "alias=Data7" -c 1 -l "alias=Data7,raid=5,readpolicy=readahead,writepolicy=writeback,preferredctrlid=1"
#
# Build Data6 LUN
# RAID level: 5
# Physical Drives: 51, 52, 55, 56, 59, 60
# Alias: Data8
# Controller Affinity: 2
# Configuration options: Capacity all (default), 64K stripe size (default),
# 512K sector (default), Read Ahead, Write Back
#
array -a add -p 51,52,55,56,59,60 -s "alias=Data8" -c 2 -l "alias=Data8,raid=5,readpolicy=readahead,writepolicy=writeback,preferredctrlid=1"
#
# Build Audio/Scratch2 LUN
# RAID level: 5
# Physical Drives: 61, 62, 63
# Alias: Scratch4
# Controller Affinity: 2
# Configuration options: Capacity all (default), 64K stripe size (default),
# 512K sector (default), Read Ahead, Write Back
#
array -a add -p 61,62,63 -s "alias=Scratch4" -c 1 -l "alias=Scratch4,raid=5,readpolicy=readahead,writepolicy=writeback,preferredctrlid=1"
#
# Set up global spares
# Physical Drives:64
# Type: Global spares, Revertible
#
spare -a add -p 64 -t g -r y
#
# Perform Init on all new LUNs
#
init -a start -l 9 -q 100
init -a start -l 10 -q 100
init -a start -l 11 -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.