Setup Guide

Table Of Contents
Server Configuration Profiles: User’s Guide
35 Server Configuration Profiles: Reference Guide | 456
9 RAID / Storage Configuration and Operations
SCP can be used to perform a variety of RAID and storage operations. A few common activities have been
included below and additional details can be found in the
Creating and Managing XML Configuration Files by
Using WS-Man whitepaper.
NOTE: Storage Component elements can be nested inside of their parent Components. This is done to
show the hierarchy of these devices. In the first example below, Disk.Virtual.0 is a subcomponent of
RAID.Slot.2-1. This is also reflected in the Disk.Virtual.0:RAID.Slot.2-1 FQDD.
9.1 Create and initialize a virtual disk
SCP can be used to create and initialize a virtual disk. The XML example below illustrates how this can be
accomplished with a template. The Virtual Disk will be a part of RAID.Slot.2-1 using disk 0 and 9. The
RAIDaction attribute specifies the Create activity, and the RAIDinitOperation attribute specifies how the VD
will be initialized.
<Component FQDD="RAID.Slot.2-1">
<Component FQDD="Disk.Virtual.0:RAID.Slot.2-1">
<Attribute Name="IncludedPhysicalDiskID">
Disk.Bay.0:Enclosure.External.0-0:RAID.Slot.2-1
</Attribute>
<Attribute Name="IncludedPhysicalDiskID">
Disk.Bay.9:Enclosure.External.0-0:RAID.Slot.2-1
</Attribute>
<Attribute Name="RAIDaction">Create</Attribute>
<Attribute Name="RAIDinitOperation">Fast</Attribute>
<Attribute Name="DiskCachePolicy">Default</Attribute>
<Attribute Name="RAIDdefaultWritePolicy">WriteBack</Attribute>
<Attribute Name="RAIDdefaultReadPolicy">Adaptive</Attribute>
<Attribute Name="Name">xmlconfig</Attribute>
<Attribute Name="Size">146163105792</Attribute>
<Attribute Name="StripeSize">128</Attribute>
<Attribute Name="SpanDepth">1</Attribute>
<Attribute Name="SpanLength">2</Attribute>
<Attribute Name="RAIDTypes">RAID 1</Attribute>
</Component>
</Component>
This action can also be performed without specifying the physical disks. If no physical disks are included in
the VD creation, they will be chosen automatically.
<Component FQDD="RAID.Slot.2-1">
<Component FQDD="Disk.Virtual.0:RAID.Slot.2-1">
<Attribute Name="RAIDaction">CreateAuto</Attribute>
<Attribute Name="RAIDinitOperation">Fast</Attribute>
<Attribute Name="Name">xmlconfig</Attribute>
<Attribute Name="Size">0</Attribute>
<Attribute Name="RAIDTypes">RAID 1</Attribute>
</Component>
</Component>